diff --git a/.eslintignore b/.eslintignore index 1444a777aa1..6524a88895f 100644 --- a/.eslintignore +++ b/.eslintignore @@ -31,3 +31,5 @@ hardware-testing/** # app-testing don't format the json protocols app-testing/files +# app testing don't format the snapshots +app-testing/tests/__snapshots__ diff --git a/.github/workflows/analyses-snapshot-test.yaml b/.github/workflows/analyses-snapshot-test.yaml new file mode 100644 index 00000000000..bb11837ca6c --- /dev/null +++ b/.github/workflows/analyses-snapshot-test.yaml @@ -0,0 +1,71 @@ +name: Analyses Snapshot Test + +on: + workflow_dispatch: + inputs: + TARGET: + description: 'Target branch or tag' + required: true + default: 'edge' + TEST_SOURCE: + description: 'Target for the test code' + required: true + default: 'edge' + schedule: + - cron: '0 7-8 * * *' # Random time between 2-3 AM EST (7-8 AM UTC) + +jobs: + build-and-test: + runs-on: ubuntu-latest + env: + TARGET: ${{ github.event.inputs.TARGET || 'edge' }} + TEST_SOURCE: ${{ github.event.inputs.TEST_SOURCE || 'edge' }} + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + with: + ref: ${{ env.TEST_SOURCE }} + + - name: Docker Build + working-directory: app-testing + run: make build-opentrons-analysis + + - name: Set up Python 3.12 + uses: actions/setup-python@v5 + with: + python-version: '3.12' + cache: 'pipenv' + cache-dependency-path: app-testing/Pipfile.lock + + - name: Setup Python Dependencies + working-directory: app-testing + run: make setup + + - name: Run Test + id: run_test + working-directory: app-testing + run: make snapshot-test + + - name: Upload Report + if: '!cancelled()' + uses: actions/upload-artifact@v4 + with: + name: test-report + path: app-testing/results/ + + - name: Handle Test Failure + if: failure() + working-directory: app-testing + run: make snapshot-test-update + + - name: Create Snapshot update Request + if: failure() + uses: peter-evans/create-pull-request@v5 + with: + commit-message: 'fix(app-testing): snapshot failure capture' + title: 'Evaluate Analyses Snapshot Update ${{ env.TARGET }}' + body: 'This PR is an automated snapshot update request. Please review the changes and merge if they are acceptable or find you bug and fix it.' + branch: 'app-testing/${{ env.TARGET }}-from-${{ env.TEST_SOURCE}}' + base: ${{ env.TEST_SOURCE}} + diff --git a/.github/workflows/app-testing-lint.yaml b/.github/workflows/app-testing-lint.yaml index ec9b45bfe6c..446cea74306 100644 --- a/.github/workflows/app-testing-lint.yaml +++ b/.github/workflows/app-testing-lint.yaml @@ -19,20 +19,18 @@ jobs: lint: name: 'app-testing lint' timeout-minutes: 5 - runs-on: 'ubuntu-22.04' + runs-on: 'ubuntu-latest' steps: - name: Checkout opentrons repo - uses: 'actions/checkout@v3' + uses: 'actions/checkout@v4' - name: Setup Python - uses: 'actions/setup-python@v4' + uses: 'actions/setup-python@v5' with: - python-version: '3.11' + python-version: '3.12' cache: 'pipenv' cache-dependency-path: app-testing/Pipfile.lock - - name: Install Pipenv - run: pip install -U pipenv - - name: Pipenv Install + - name: Setup id: install working-directory: ./app-testing run: make setup diff --git a/app-testing/.gitignore b/app-testing/.gitignore index 6ba4abe0128..8c771199b29 100644 --- a/app-testing/.gitignore +++ b/app-testing/.gitignore @@ -1,2 +1,3 @@ .env results +analysis_results/*.json diff --git a/app-testing/Makefile b/app-testing/Makefile index 3592ef29cdd..40abbc0e7aa 100644 --- a/app-testing/Makefile +++ b/app-testing/Makefile @@ -1,22 +1,22 @@ .PHONY: black black: - pipenv run python -m black . + python -m pipenv run python -m black . .PHONY: black-check black-check: - pipenv run python -m black . --check + python -m pipenv run python -m black . --check .PHONY: ruff ruff: - pipenv run python -m ruff . --fix + python -m pipenv run python -m ruff . --fix --unsafe-fixes .PHONY: ruff-check ruff-check: - pipenv run python -m ruff . + python -m pipenv run python -m ruff . .PHONY: mypy mypy: - pipenv run python -m mypy conftest.py automation tests + python -m pipenv run python -m mypy conftest.py automation tests citools .PHONY: lint lint: @@ -32,19 +32,19 @@ format: .PHONY: test-ci test-ci: - pipenv run python -m pytest -m "emulated_alpha" + python -m pipenv run python -m pytest -m "emulated_alpha" .PHONY: test-protocol-analysis test-protocol-analysis: pipenv run python -m pytest -v tests/protocol_analyze_test.py .PHONY: setup -setup: - pipenv install +setup: install-pipenv + python -m pipenv install .PHONY: teardown teardown: - pipenv --rm + python -m pipenv --rm .PHONY: format-readme format-readme: @@ -52,4 +52,24 @@ format-readme: .PHONY: print-protocols print-protocols: - pipenv run python print_protocols.py + python -m pipenv run python print_protocols.py + +.PHONY: install-pipenv +install-pipenv: + python -m pip install -U pipenv + +.PHONY: snapshot-test +snapshot-test: + python -m pipenv run pytest -k analyses_snapshot_test -vv + +.PHONY: snapshot-test-update +snapshot-test-update: + python -m pipenv run pytest -k analyses_snapshot_test --snapshot-update + +TARGET ?= edge + +.PHONY: build-opentrons-analysis +build-opentrons-analysis: + @echo "Building docker image for $(TARGET)" + @echo "If you want to build a different version, run 'make build-docker TARGET='" + docker build --build-arg OPENTRONS_VERSION=$(TARGET) -t opentrons-analysis:$(TARGET) citools/. diff --git a/app-testing/Pipfile b/app-testing/Pipfile index 12dfe7880a0..6b584a7fb4a 100644 --- a/app-testing/Pipfile +++ b/app-testing/Pipfile @@ -4,21 +4,24 @@ url = "https://pypi.org/simple" verify_ssl = true [packages] -pytest = "==7.2.0" -black = "==22.12.0" -selenium = "==4.7.2" -importlib-metadata = "==5.0.0" -requests = "==2.28.1" -python-dotenv = "==0.21.0" -pytest-xdist = "==3.0.2" -mypy = "==0.991" -types-requests = "==2.28.11.5" -rich = "==13.0.0" +pytest = "==7.4.3" +black = "==23.11.0" +selenium = "==4.15.2" +importlib-metadata = "==6.8.0" +requests = "==2.31.0" +python-dotenv = "==1.0.0" +pytest-xdist = "==3.5.0" +mypy = "==1.7.1" +types-requests = "==2.31.0.10" +rich = "==13.7.0" atomicwrites = "==1.4.1" pyreadline3 = "==3.4.1" -pydantic = "==1.10.4" -pygithub = "==1.57" -ruff = "==0.0.236" +pydantic = "==2.5.2" +pygithub = "==2.1.1" +ruff = "==0.1.6" +docker = "==6.1.3" +syrupy = "==4.6.0" +pytest-html = "==4.1.1" [requires] -python_version = "3.11" +python_version = "3.12" diff --git a/app-testing/Pipfile.lock b/app-testing/Pipfile.lock index 38341adc09c..e6d0c62ad48 100644 --- a/app-testing/Pipfile.lock +++ b/app-testing/Pipfile.lock @@ -1,11 +1,11 @@ { "_meta": { "hash": { - "sha256": "34f82d64c90df6aff09f96dc7c22e861d0b7d9826cfbdcea9e1e1eb287aefb1f" + "sha256": "833b9fb969bfaeeae450d8fdff72fe005f8b2857541ba692965d2177ff6004de" }, "pipfile-spec": 6, "requires": { - "python_version": "3.11" + "python_version": "3.12" }, "sources": [ { @@ -16,13 +16,13 @@ ] }, "default": { - "async-generator": { + "annotated-types": { "hashes": [ - "sha256:01c7bf666359b4967d2cda0000cc2e4af16a0ae098cbffcb8472fb9e8ad6585b", - "sha256:6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144" + "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43", + "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d" ], - "markers": "python_version >= '3.5'", - "version": "==1.10" + "markers": "python_version >= '3.8'", + "version": "==0.6.0" }, "atomicwrites": { "hashes": [ @@ -33,153 +33,259 @@ }, "attrs": { "hashes": [ - "sha256:29e95c7f6778868dbd49170f98f8818f78f3dc5e0e37c0b1f474e3561b240836", - "sha256:c9227bfc2f01993c03f68db37d1d15c9690188323c067c641f1a35ca58185f99" + "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04", + "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015" ], - "markers": "python_version >= '3.6'", - "version": "==22.2.0" + "markers": "python_version >= '3.7'", + "version": "==23.1.0" }, "black": { "hashes": [ - "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320", - "sha256:159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351", - "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350", - "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f", - "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf", - "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148", - "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4", - "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d", - "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc", - "sha256:9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d", - "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2", - "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f" + "sha256:250d7e60f323fcfc8ea6c800d5eba12f7967400eb6c2d21ae85ad31c204fb1f4", + "sha256:2a9acad1451632021ee0d146c8765782a0c3846e0e0ea46659d7c4f89d9b212b", + "sha256:412f56bab20ac85927f3a959230331de5614aecda1ede14b373083f62ec24e6f", + "sha256:421f3e44aa67138ab1b9bfbc22ee3780b22fa5b291e4db8ab7eee95200726b07", + "sha256:45aa1d4675964946e53ab81aeec7a37613c1cb71647b5394779e6efb79d6d187", + "sha256:4c44b7211a3a0570cc097e81135faa5f261264f4dfaa22bd5ee2875a4e773bd6", + "sha256:4c68855825ff432d197229846f971bc4d6666ce90492e5b02013bcaca4d9ab05", + "sha256:5133f5507007ba08d8b7b263c7aa0f931af5ba88a29beacc4b2dc23fcefe9c06", + "sha256:54caaa703227c6e0c87b76326d0862184729a69b73d3b7305b6288e1d830067e", + "sha256:58e5f4d08a205b11800332920e285bd25e1a75c54953e05502052738fe16b3b5", + "sha256:698c1e0d5c43354ec5d6f4d914d0d553a9ada56c85415700b81dc90125aac244", + "sha256:6c1cac07e64433f646a9a838cdc00c9768b3c362805afc3fce341af0e6a9ae9f", + "sha256:760415ccc20f9e8747084169110ef75d545f3b0932ee21368f63ac0fee86b221", + "sha256:7f622b6822f02bfaf2a5cd31fdb7cd86fcf33dab6ced5185c35f5db98260b055", + "sha256:cf57719e581cfd48c4efe28543fea3d139c6b6f1238b3f0102a9c73992cbb479", + "sha256:d136ef5b418c81660ad847efe0e55c58c8208b77a57a28a503a5f345ccf01394", + "sha256:dbea0bb8575c6b6303cc65017b46351dc5953eea5c0a59d7b7e3a2d2f433a911", + "sha256:fc7f6a44d52747e65a02558e1d807c82df1d66ffa80a601862040a43ec2e3142" ], "index": "pypi", - "version": "==22.12.0" + "markers": "python_version >= '3.8'", + "version": "==23.11.0" }, "certifi": { "hashes": [ - "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3", - "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18" + "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1", + "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474" ], "markers": "python_version >= '3.6'", - "version": "==2022.12.7" + "version": "==2023.11.17" }, "cffi": { "hashes": [ - "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5", - "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef", - "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104", - "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426", - "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405", - "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375", - "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a", - "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e", - "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc", - "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf", - "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185", - "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497", - "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3", - "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35", - "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c", - "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83", - "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21", - "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca", - "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984", - "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac", - "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd", - "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee", - "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a", - "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2", - "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192", - "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7", - "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585", - "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f", - "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e", - "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27", - "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b", - "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e", - "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e", - "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d", - "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c", - "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415", - "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82", - "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02", - "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314", - "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325", - "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c", - "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3", - "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914", - "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045", - "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d", - "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9", - "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5", - "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2", - "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c", - "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3", - "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2", - "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8", - "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d", - "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d", - "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9", - "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162", - "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76", - "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4", - "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e", - "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9", - "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6", - "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b", - "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01", - "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0" - ], - "version": "==1.15.1" + "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc", + "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a", + "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417", + "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab", + "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520", + "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36", + "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743", + "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8", + "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed", + "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684", + "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56", + "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324", + "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d", + "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235", + "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e", + "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088", + "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000", + "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7", + "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e", + "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673", + "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c", + "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe", + "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2", + "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098", + "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8", + "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a", + "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0", + "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b", + "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896", + "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e", + "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9", + "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2", + "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b", + "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6", + "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404", + "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f", + "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0", + "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4", + "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc", + "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936", + "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba", + "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872", + "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb", + "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614", + "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1", + "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d", + "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969", + "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b", + "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4", + "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627", + "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956", + "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357" + ], + "markers": "python_version >= '3.8'", + "version": "==1.16.0" }, "charset-normalizer": { "hashes": [ - "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845", - "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f" + "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", + "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087", + "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786", + "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", + "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", + "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", + "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", + "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", + "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", + "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898", + "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", + "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", + "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", + "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6", + "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", + "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a", + "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", + "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", + "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714", + "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2", + "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", + "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", + "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d", + "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", + "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", + "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", + "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", + "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", + "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a", + "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", + "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", + "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", + "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", + "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", + "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", + "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac", + "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25", + "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", + "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", + "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", + "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", + "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", + "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", + "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", + "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99", + "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c", + "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", + "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811", + "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", + "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", + "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", + "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", + "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04", + "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c", + "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", + "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", + "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", + "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99", + "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985", + "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", + "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238", + "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", + "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", + "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", + "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a", + "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", + "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8", + "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", + "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5", + "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5", + "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711", + "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", + "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", + "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", + "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", + "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4", + "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", + "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", + "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", + "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", + "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", + "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8", + "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", + "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b", + "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", + "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", + "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", + "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33", + "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", + "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561" ], - "markers": "python_full_version >= '3.6.0'", - "version": "==2.1.1" + "markers": "python_full_version >= '3.7.0'", + "version": "==3.3.2" }, "click": { "hashes": [ - "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e", - "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48" + "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", + "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" ], "markers": "python_version >= '3.7'", - "version": "==8.1.3" + "version": "==8.1.7" + }, + "cryptography": { + "hashes": [ + "sha256:079b85658ea2f59c4f43b70f8119a52414cdb7be34da5d019a77bf96d473b960", + "sha256:09616eeaef406f99046553b8a40fbf8b1e70795a91885ba4c96a70793de5504a", + "sha256:13f93ce9bea8016c253b34afc6bd6a75993e5c40672ed5405a9c832f0d4a00bc", + "sha256:37a138589b12069efb424220bf78eac59ca68b95696fc622b6ccc1c0a197204a", + "sha256:3c78451b78313fa81607fa1b3f1ae0a5ddd8014c38a02d9db0616133987b9cdf", + "sha256:43f2552a2378b44869fe8827aa19e69512e3245a219104438692385b0ee119d1", + "sha256:48a0476626da912a44cc078f9893f292f0b3e4c739caf289268168d8f4702a39", + "sha256:49f0805fc0b2ac8d4882dd52f4a3b935b210935d500b6b805f321addc8177406", + "sha256:5429ec739a29df2e29e15d082f1d9ad683701f0ec7709ca479b3ff2708dae65a", + "sha256:5a1b41bc97f1ad230a41657d9155113c7521953869ae57ac39ac7f1bb471469a", + "sha256:68a2dec79deebc5d26d617bfdf6e8aab065a4f34934b22d3b5010df3ba36612c", + "sha256:7a698cb1dac82c35fcf8fe3417a3aaba97de16a01ac914b89a0889d364d2f6be", + "sha256:841df4caa01008bad253bce2a6f7b47f86dc9f08df4b433c404def869f590a15", + "sha256:90452ba79b8788fa380dfb587cca692976ef4e757b194b093d845e8d99f612f2", + "sha256:928258ba5d6f8ae644e764d0f996d61a8777559f72dfeb2eea7e2fe0ad6e782d", + "sha256:af03b32695b24d85a75d40e1ba39ffe7db7ffcb099fe507b39fd41a565f1b157", + "sha256:b640981bf64a3e978a56167594a0e97db71c89a479da8e175d8bb5be5178c003", + "sha256:c5ca78485a255e03c32b513f8c2bc39fedb7f5c5f8535545bdc223a03b24f248", + "sha256:c7f3201ec47d5207841402594f1d7950879ef890c0c495052fa62f58283fde1a", + "sha256:d5ec85080cce7b0513cfd233914eb8b7bbd0633f1d1703aa28d1dd5a72f678ec", + "sha256:d6c391c021ab1f7a82da5d8d0b3cee2f4b2c455ec86c8aebbc84837a631ff309", + "sha256:e3114da6d7f95d2dee7d3f4eec16dacff819740bbab931aff8648cb13c5ff5e7", + "sha256:f983596065a18a2183e7f79ab3fd4c475205b839e02cbc0efbbf9666c4b3083d" + ], + "version": "==41.0.7" }, - "colorama": { - "hashes": [ - "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", - "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" - ], - "markers": "sys_platform == 'win32'", - "version": "==0.4.6" - }, - "commonmark": { + "deprecated": { "hashes": [ - "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60", - "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9" + "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c", + "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3" ], - "version": "==0.9.1" + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.2.14" }, - "deprecated": { + "docker": { "hashes": [ - "sha256:43ac5335da90c31c24ba028af536a91d41d53f9e6901ddb021bcc572ce44e38d", - "sha256:64756e3e14c8c5eea9795d93c524551432a0be75629f8f29e67ab8caf076c76d" + "sha256:aa6d17830045ba5ef0168d5eaa34d37beeb113948c413affe1d5991fc11f9a20", + "sha256:aecd2277b8bf8e506e484f6ab7aec39abe0038e29fa4a6d3ba86c3fe01844ed9" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==1.2.13" + "index": "pypi", + "markers": "python_version >= '3.7'", + "version": "==6.1.3" }, "execnet": { "hashes": [ - "sha256:8f694f3ba9cc92cab508b152dcfe322153975c29bda272e2fd7f3f00f36e47c5", - "sha256:a295f7cc774947aac58dde7fdc85f4aa00c42adf5d8f5468fc630c1acf30a142" + "sha256:88256416ae766bc9e8895c76a87928c0012183da3cc4fc18016e6f050e025f41", + "sha256:cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==1.9.0" + "markers": "python_version >= '3.7'", + "version": "==2.0.2" }, "h11": { "hashes": [ @@ -191,19 +297,20 @@ }, "idna": { "hashes": [ - "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4", - "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2" + "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca", + "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f" ], "markers": "python_version >= '3.5'", - "version": "==3.4" + "version": "==3.6" }, "importlib-metadata": { "hashes": [ - "sha256:da31db32b304314d044d3c12c79bd59e307889b287ad12ff387b3500835fc2ab", - "sha256:ddb0e35065e8938f867ed4928d0ae5bf2a53b7773871bfe6bcc7e4fcdc7dea43" + "sha256:3ebb78df84a805d7698245025b975d9d67053cd94c79245ba4b3eb694abe68bb", + "sha256:dbace7892d8c0c4ac1ad096662232f831d4e64f4c4545bd53016a3e9d4654743" ], "index": "pypi", - "version": "==5.0.0" + "markers": "python_version >= '3.8'", + "version": "==6.8.0" }, "iniconfig": { "hashes": [ @@ -213,88 +320,177 @@ "markers": "python_version >= '3.7'", "version": "==2.0.0" }, + "jinja2": { + "hashes": [ + "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852", + "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" + ], + "markers": "python_version >= '3.7'", + "version": "==3.1.2" + }, + "markdown-it-py": { + "hashes": [ + "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", + "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb" + ], + "markers": "python_version >= '3.8'", + "version": "==3.0.0" + }, + "markupsafe": { + "hashes": [ + "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e", + "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e", + "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431", + "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686", + "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c", + "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559", + "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc", + "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb", + "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939", + "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c", + "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0", + "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4", + "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9", + "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575", + "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba", + "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d", + "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd", + "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3", + "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00", + "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155", + "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac", + "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52", + "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f", + "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8", + "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b", + "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007", + "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24", + "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea", + "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198", + "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0", + "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee", + "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be", + "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2", + "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1", + "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707", + "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6", + "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c", + "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58", + "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823", + "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779", + "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636", + "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c", + "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad", + "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee", + "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc", + "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2", + "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48", + "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7", + "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e", + "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b", + "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa", + "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5", + "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e", + "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb", + "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9", + "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57", + "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc", + "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc", + "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2", + "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11" + ], + "markers": "python_version >= '3.7'", + "version": "==2.1.3" + }, + "mdurl": { + "hashes": [ + "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", + "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba" + ], + "markers": "python_version >= '3.7'", + "version": "==0.1.2" + }, "mypy": { "hashes": [ - "sha256:0714258640194d75677e86c786e80ccf294972cc76885d3ebbb560f11db0003d", - "sha256:0c8f3be99e8a8bd403caa8c03be619544bc2c77a7093685dcf308c6b109426c6", - "sha256:0cca5adf694af539aeaa6ac633a7afe9bbd760df9d31be55ab780b77ab5ae8bf", - "sha256:1c8cd4fb70e8584ca1ed5805cbc7c017a3d1a29fb450621089ffed3e99d1857f", - "sha256:1f7d1a520373e2272b10796c3ff721ea1a0712288cafaa95931e66aa15798813", - "sha256:209ee89fbb0deed518605edddd234af80506aec932ad28d73c08f1400ef80a33", - "sha256:26efb2fcc6b67e4d5a55561f39176821d2adf88f2745ddc72751b7890f3194ad", - "sha256:37bd02ebf9d10e05b00d71302d2c2e6ca333e6c2a8584a98c00e038db8121f05", - "sha256:3a700330b567114b673cf8ee7388e949f843b356a73b5ab22dd7cff4742a5297", - "sha256:3c0165ba8f354a6d9881809ef29f1a9318a236a6d81c690094c5df32107bde06", - "sha256:3d80e36b7d7a9259b740be6d8d906221789b0d836201af4234093cae89ced0cd", - "sha256:4175593dc25d9da12f7de8de873a33f9b2b8bdb4e827a7cae952e5b1a342e243", - "sha256:4307270436fd7694b41f913eb09210faff27ea4979ecbcd849e57d2da2f65305", - "sha256:5e80e758243b97b618cdf22004beb09e8a2de1af481382e4d84bc52152d1c476", - "sha256:641411733b127c3e0dab94c45af15fea99e4468f99ac88b39efb1ad677da5711", - "sha256:652b651d42f155033a1967739788c436491b577b6a44e4c39fb340d0ee7f0d70", - "sha256:6d7464bac72a85cb3491c7e92b5b62f3dcccb8af26826257760a552a5e244aa5", - "sha256:74e259b5c19f70d35fcc1ad3d56499065c601dfe94ff67ae48b85596b9ec1461", - "sha256:7d17e0a9707d0772f4a7b878f04b4fd11f6f5bcb9b3813975a9b13c9332153ab", - "sha256:901c2c269c616e6cb0998b33d4adbb4a6af0ac4ce5cd078afd7bc95830e62c1c", - "sha256:98e781cd35c0acf33eb0295e8b9c55cdbef64fcb35f6d3aa2186f289bed6e80d", - "sha256:a12c56bf73cdab116df96e4ff39610b92a348cc99a1307e1da3c3768bbb5b135", - "sha256:ac6e503823143464538efda0e8e356d871557ef60ccd38f8824a4257acc18d93", - "sha256:b8472f736a5bfb159a5e36740847808f6f5b659960115ff29c7cecec1741c648", - "sha256:b86ce2c1866a748c0f6faca5232059f881cda6dda2a893b9a8373353cfe3715a", - "sha256:bc9ec663ed6c8f15f4ae9d3c04c989b744436c16d26580eaa760ae9dd5d662eb", - "sha256:c9166b3f81a10cdf9b49f2d594b21b31adadb3d5e9db9b834866c3258b695be3", - "sha256:d13674f3fb73805ba0c45eb6c0c3053d218aa1f7abead6e446d474529aafc372", - "sha256:de32edc9b0a7e67c2775e574cb061a537660e51210fbf6006b0b36ea695ae9bb", - "sha256:e62ebaad93be3ad1a828a11e90f0e76f15449371ffeecca4a0a0b9adc99abcef" + "sha256:12cce78e329838d70a204293e7b29af9faa3ab14899aec397798a4b41be7f340", + "sha256:1484b8fa2c10adf4474f016e09d7a159602f3239075c7bf9f1627f5acf40ad49", + "sha256:204e0d6de5fd2317394a4eff62065614c4892d5a4d1a7ee55b765d7a3d9e3f82", + "sha256:2643d145af5292ee956aa0a83c2ce1038a3bdb26e033dadeb2f7066fb0c9abce", + "sha256:2c6e4464ed5f01dc44dc9821caf67b60a4e5c3b04278286a85c067010653a0eb", + "sha256:2f7f6985d05a4e3ce8255396df363046c28bea790e40617654e91ed580ca7c51", + "sha256:31902408f4bf54108bbfb2e35369877c01c95adc6192958684473658c322c8a5", + "sha256:40716d1f821b89838589e5b3106ebbc23636ffdef5abc31f7cd0266db936067e", + "sha256:4b901927f16224d0d143b925ce9a4e6b3a758010673eeded9b748f250cf4e8f7", + "sha256:4fc3d14ee80cd22367caaaf6e014494415bf440980a3045bf5045b525680ac33", + "sha256:5cf3f0c5ac72139797953bd50bc6c95ac13075e62dbfcc923571180bebb662e9", + "sha256:6dbdec441c60699288adf051f51a5d512b0d818526d1dcfff5a41f8cd8b4aaf1", + "sha256:72cf32ce7dd3562373f78bd751f73c96cfb441de147cc2448a92c1a308bd0ca6", + "sha256:75aa828610b67462ffe3057d4d8a4112105ed211596b750b53cbfe182f44777a", + "sha256:75c4d2a6effd015786c87774e04331b6da863fc3fc4e8adfc3b40aa55ab516fe", + "sha256:78e25b2fd6cbb55ddfb8058417df193f0129cad5f4ee75d1502248e588d9e0d7", + "sha256:84860e06ba363d9c0eeabd45ac0fde4b903ad7aa4f93cd8b648385a888e23200", + "sha256:8c5091ebd294f7628eb25ea554852a52058ac81472c921150e3a61cdd68f75a7", + "sha256:944bdc21ebd620eafefc090cdf83158393ec2b1391578359776c00de00e8907a", + "sha256:9c7ac372232c928fff0645d85f273a726970c014749b924ce5710d7d89763a28", + "sha256:d9b338c19fa2412f76e17525c1b4f2c687a55b156320acb588df79f2e6fa9fea", + "sha256:ee5d62d28b854eb61889cde4e1dbc10fbaa5560cb39780c3995f6737f7e82120", + "sha256:f2c2521a8e4d6d769e3234350ba7b65ff5d527137cdcde13ff4d99114b0c8e7d", + "sha256:f6efc9bd72258f89a3816e3a98c09d36f079c223aa345c659622f056b760ab42", + "sha256:f7c5d642db47376a0cc130f0de6d055056e010debdaf0707cd2b0fc7e7ef30ea", + "sha256:fcb6d9afb1b6208b4c712af0dafdc650f518836065df0d4fb1d800f5d6773db2", + "sha256:fcd2572dd4519e8a6642b733cd3a8cfc1ef94bafd0c1ceed9c94fe736cb65b6a" ], "index": "pypi", - "version": "==0.991" + "markers": "python_version >= '3.8'", + "version": "==1.7.1" }, "mypy-extensions": { "hashes": [ - "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d", - "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8" + "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", + "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" ], - "version": "==0.4.3" + "markers": "python_version >= '3.5'", + "version": "==1.0.0" }, "outcome": { "hashes": [ - "sha256:6f82bd3de45da303cf1f771ecafa1633750a358436a8bb60e06a1ceb745d2672", - "sha256:c4ab89a56575d6d38a05aa16daeaa333109c1f96167aba8901ab18b6b5e0f7f5" + "sha256:9dcf02e65f2971b80047b377468e72a268e15c0af3cf1238e6ff14f7f91143b8", + "sha256:e771c5ce06d1415e356078d3bdd68523f284b4ce5419828922b6871e65eda82b" ], "markers": "python_version >= '3.7'", - "version": "==1.2.0" + "version": "==1.3.0.post0" }, "packaging": { "hashes": [ - "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2", - "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97" + "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", + "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" ], "markers": "python_version >= '3.7'", - "version": "==23.0" + "version": "==23.2" }, "pathspec": { "hashes": [ - "sha256:3a66eb970cbac598f9e5ccb5b2cf58930cd8e3ed86d393d541eaf2d8b1705229", - "sha256:64d338d4e0914e91c1792321e6907b5a593f1ab1851de7fc269557a21b30ebbc" + "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", + "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712" ], - "markers": "python_version >= '3.7'", - "version": "==0.11.0" + "markers": "python_version >= '3.8'", + "version": "==0.12.1" }, "platformdirs": { "hashes": [ - "sha256:83c8f6d04389165de7c9b6f0c682439697887bca0aa2f1c87ef1826be3584490", - "sha256:e1fea1fe471b9ff8332e229df3cb7de4f53eeea4998d3b6bfff542115e998bd2" + "sha256:11c8f37bcca40db96d8144522d925583bdb7a31f7b0e37e3ed4318400a8e2380", + "sha256:906d548203468492d432bcb294d4bc2fff751bf84971fbb2c10918cc206ee420" ], - "markers": "python_version >= '3.7'", - "version": "==2.6.2" + "markers": "python_version >= '3.8'", + "version": "==4.1.0" }, "pluggy": { "hashes": [ - "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159", - "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3" + "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12", + "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7" ], - "markers": "python_version >= '3.6'", - "version": "==1.0.0" + "markers": "python_version >= '3.8'", + "version": "==1.3.0" }, "pycparser": { "hashes": [ @@ -305,69 +501,151 @@ }, "pydantic": { "hashes": [ - "sha256:05a81b006be15655b2a1bae5faa4280cf7c81d0e09fcb49b342ebf826abe5a72", - "sha256:0b53e1d41e97063d51a02821b80538053ee4608b9a181c1005441f1673c55423", - "sha256:2b3ce5f16deb45c472dde1a0ee05619298c864a20cded09c4edd820e1454129f", - "sha256:2e82a6d37a95e0b1b42b82ab340ada3963aea1317fd7f888bb6b9dfbf4fff57c", - "sha256:301d626a59edbe5dfb48fcae245896379a450d04baeed50ef40d8199f2733b06", - "sha256:39f4a73e5342b25c2959529f07f026ef58147249f9b7431e1ba8414a36761f53", - "sha256:4948f264678c703f3877d1c8877c4e3b2e12e549c57795107f08cf70c6ec7774", - "sha256:4b05697738e7d2040696b0a66d9f0a10bec0efa1883ca75ee9e55baf511909d6", - "sha256:51bdeb10d2db0f288e71d49c9cefa609bca271720ecd0c58009bd7504a0c464c", - "sha256:55b1625899acd33229c4352ce0ae54038529b412bd51c4915349b49ca575258f", - "sha256:572066051eeac73d23f95ba9a71349c42a3e05999d0ee1572b7860235b850cc6", - "sha256:6a05a9db1ef5be0fe63e988f9617ca2551013f55000289c671f71ec16f4985e3", - "sha256:6dc1cc241440ed7ca9ab59d9929075445da6b7c94ced281b3dd4cfe6c8cff817", - "sha256:6e7124d6855b2780611d9f5e1e145e86667eaa3bd9459192c8dc1a097f5e9903", - "sha256:75d52162fe6b2b55964fbb0af2ee58e99791a3138588c482572bb6087953113a", - "sha256:78cec42b95dbb500a1f7120bdf95c401f6abb616bbe8785ef09887306792e66e", - "sha256:7feb6a2d401f4d6863050f58325b8d99c1e56f4512d98b11ac64ad1751dc647d", - "sha256:8775d4ef5e7299a2f4699501077a0defdaac5b6c4321173bcb0f3c496fbadf85", - "sha256:887ca463c3bc47103c123bc06919c86720e80e1214aab79e9b779cda0ff92a00", - "sha256:9193d4f4ee8feca58bc56c8306bcb820f5c7905fd919e0750acdeeeef0615b28", - "sha256:983e720704431a6573d626b00662eb78a07148c9115129f9b4351091ec95ecc3", - "sha256:990406d226dea0e8f25f643b370224771878142155b879784ce89f633541a024", - "sha256:9cbdc268a62d9a98c56e2452d6c41c0263d64a2009aac69246486f01b4f594c4", - "sha256:a48f1953c4a1d9bd0b5167ac50da9a79f6072c63c4cef4cf2a3736994903583e", - "sha256:a9a6747cac06c2beb466064dda999a13176b23535e4c496c9d48e6406f92d42d", - "sha256:a9f2de23bec87ff306aef658384b02aa7c32389766af3c5dee9ce33e80222dfa", - "sha256:b5635de53e6686fe7a44b5cf25fcc419a0d5e5c1a1efe73d49d48fe7586db854", - "sha256:b6f9d649892a6f54a39ed56b8dfd5e08b5f3be5f893da430bed76975f3735d15", - "sha256:b9a3859f24eb4e097502a3be1fb4b2abb79b6103dd9e2e0edb70613a4459a648", - "sha256:cd8702c5142afda03dc2b1ee6bc358b62b3735b2cce53fc77b31ca9f728e4bc8", - "sha256:d7b5a3821225f5c43496c324b0d6875fde910a1c2933d726a743ce328fbb2a8c", - "sha256:d88c4c0e5c5dfd05092a4b271282ef0588e5f4aaf345778056fc5259ba098857", - "sha256:eb992a1ef739cc7b543576337bebfc62c0e6567434e522e97291b251a41dad7f", - "sha256:f2f7eb6273dd12472d7f218e1fef6f7c7c2f00ac2e1ecde4db8824c457300416", - "sha256:fdf88ab63c3ee282c76d652fc86518aacb737ff35796023fae56a65ced1a5978", - "sha256:fdf8d759ef326962b4678d89e275ffc55b7ce59d917d9f72233762061fd04a2d" + "sha256:80c50fb8e3dcecfddae1adbcc00ec5822918490c99ab31f6cf6140ca1c1429f0", + "sha256:ff177ba64c6faf73d7afa2e8cad38fd456c0dbe01c9954e71038001cd15a6edd" ], "index": "pypi", - "version": "==1.10.4" + "markers": "python_version >= '3.7'", + "version": "==2.5.2" + }, + "pydantic-core": { + "hashes": [ + "sha256:038c9f763e650712b899f983076ce783175397c848da04985658e7628cbe873b", + "sha256:074f3d86f081ce61414d2dc44901f4f83617329c6f3ab49d2bc6c96948b2c26b", + "sha256:079206491c435b60778cf2b0ee5fd645e61ffd6e70c47806c9ed51fc75af078d", + "sha256:09b0e985fbaf13e6b06a56d21694d12ebca6ce5414b9211edf6f17738d82b0f8", + "sha256:0f6116a558fd06d1b7c2902d1c4cf64a5bd49d67c3540e61eccca93f41418124", + "sha256:103ef8d5b58596a731b690112819501ba1db7a36f4ee99f7892c40da02c3e189", + "sha256:16e29bad40bcf97aac682a58861249ca9dcc57c3f6be22f506501833ddb8939c", + "sha256:206ed23aecd67c71daf5c02c3cd19c0501b01ef3cbf7782db9e4e051426b3d0d", + "sha256:2248485b0322c75aee7565d95ad0e16f1c67403a470d02f94da7344184be770f", + "sha256:27548e16c79702f1e03f5628589c6057c9ae17c95b4c449de3c66b589ead0520", + "sha256:2d0ae0d8670164e10accbeb31d5ad45adb71292032d0fdb9079912907f0085f4", + "sha256:3128e0bbc8c091ec4375a1828d6118bc20404883169ac95ffa8d983b293611e6", + "sha256:3387277f1bf659caf1724e1afe8ee7dbc9952a82d90f858ebb931880216ea955", + "sha256:34708cc82c330e303f4ce87758828ef6e457681b58ce0e921b6e97937dd1e2a3", + "sha256:35613015f0ba7e14c29ac6c2483a657ec740e5ac5758d993fdd5870b07a61d8b", + "sha256:3ad873900297bb36e4b6b3f7029d88ff9829ecdc15d5cf20161775ce12306f8a", + "sha256:40180930807ce806aa71eda5a5a5447abb6b6a3c0b4b3b1b1962651906484d68", + "sha256:439c9afe34638ace43a49bf72d201e0ffc1a800295bed8420c2a9ca8d5e3dbb3", + "sha256:45e95333b8418ded64745f14574aa9bfc212cb4fbeed7a687b0c6e53b5e188cd", + "sha256:4641e8ad4efb697f38a9b64ca0523b557c7931c5f84e0fd377a9a3b05121f0de", + "sha256:49b08aae5013640a3bfa25a8eebbd95638ec3f4b2eaf6ed82cf0c7047133f03b", + "sha256:4bc536201426451f06f044dfbf341c09f540b4ebdb9fd8d2c6164d733de5e634", + "sha256:4ce601907e99ea5b4adb807ded3570ea62186b17f88e271569144e8cca4409c7", + "sha256:4e40f2bd0d57dac3feb3a3aed50f17d83436c9e6b09b16af271b6230a2915459", + "sha256:4e47a76848f92529879ecfc417ff88a2806438f57be4a6a8bf2961e8f9ca9ec7", + "sha256:513b07e99c0a267b1d954243845d8a833758a6726a3b5d8948306e3fe14675e3", + "sha256:531f4b4252fac6ca476fbe0e6f60f16f5b65d3e6b583bc4d87645e4e5ddde331", + "sha256:57d52fa717ff445cb0a5ab5237db502e6be50809b43a596fb569630c665abddf", + "sha256:59986de5710ad9613ff61dd9b02bdd2f615f1a7052304b79cc8fa2eb4e336d2d", + "sha256:5baab5455c7a538ac7e8bf1feec4278a66436197592a9bed538160a2e7d11e36", + "sha256:5c7d5b5005f177764e96bd584d7bf28d6e26e96f2a541fdddb934c486e36fd59", + "sha256:60b7607753ba62cf0739177913b858140f11b8af72f22860c28eabb2f0a61937", + "sha256:615a0a4bff11c45eb3c1996ceed5bdaa2f7b432425253a7c2eed33bb86d80abc", + "sha256:61ea96a78378e3bd5a0be99b0e5ed00057b71f66115f5404d0dae4819f495093", + "sha256:652c1988019752138b974c28f43751528116bcceadad85f33a258869e641d753", + "sha256:6637560562134b0e17de333d18e69e312e0458ee4455bdad12c37100b7cad706", + "sha256:678265f7b14e138d9a541ddabbe033012a2953315739f8cfa6d754cc8063e8ca", + "sha256:699156034181e2ce106c89ddb4b6504c30db8caa86e0c30de47b3e0654543260", + "sha256:6b9ff467ffbab9110e80e8c8de3bcfce8e8b0fd5661ac44a09ae5901668ba997", + "sha256:6c327e9cd849b564b234da821236e6bcbe4f359a42ee05050dc79d8ed2a91588", + "sha256:6d30226dfc816dd0fdf120cae611dd2215117e4f9b124af8c60ab9093b6e8e71", + "sha256:6e227c40c02fd873c2a73a98c1280c10315cbebe26734c196ef4514776120aeb", + "sha256:6e4d090e73e0725b2904fdbdd8d73b8802ddd691ef9254577b708d413bf3006e", + "sha256:70f4b4851dbb500129681d04cc955be2a90b2248d69273a787dda120d5cf1f69", + "sha256:70f947628e074bb2526ba1b151cee10e4c3b9670af4dbb4d73bc8a89445916b5", + "sha256:774de879d212db5ce02dfbf5b0da9a0ea386aeba12b0b95674a4ce0593df3d07", + "sha256:77fa384d8e118b3077cccfcaf91bf83c31fe4dc850b5e6ee3dc14dc3d61bdba1", + "sha256:79e0a2cdbdc7af3f4aee3210b1172ab53d7ddb6a2d8c24119b5706e622b346d0", + "sha256:7e88f5696153dc516ba6e79f82cc4747e87027205f0e02390c21f7cb3bd8abfd", + "sha256:7f8210297b04e53bc3da35db08b7302a6a1f4889c79173af69b72ec9754796b8", + "sha256:81982d78a45d1e5396819bbb4ece1fadfe5f079335dd28c4ab3427cd95389944", + "sha256:823fcc638f67035137a5cd3f1584a4542d35a951c3cc68c6ead1df7dac825c26", + "sha256:853a2295c00f1d4429db4c0fb9475958543ee80cfd310814b5c0ef502de24dda", + "sha256:88e74ab0cdd84ad0614e2750f903bb0d610cc8af2cc17f72c28163acfcf372a4", + "sha256:8aa1768c151cf562a9992462239dfc356b3d1037cc5a3ac829bb7f3bda7cc1f9", + "sha256:8c8a8812fe6f43a3a5b054af6ac2d7b8605c7bcab2804a8a7d68b53f3cd86e00", + "sha256:95b15e855ae44f0c6341ceb74df61b606e11f1087e87dcb7482377374aac6abe", + "sha256:96581cfefa9123accc465a5fd0cc833ac4d75d55cc30b633b402e00e7ced00a6", + "sha256:9bd18fee0923ca10f9a3ff67d4851c9d3e22b7bc63d1eddc12f439f436f2aada", + "sha256:a33324437018bf6ba1bb0f921788788641439e0ed654b233285b9c69704c27b4", + "sha256:a6a16f4a527aae4f49c875da3cdc9508ac7eef26e7977952608610104244e1b7", + "sha256:a717aef6971208f0851a2420b075338e33083111d92041157bbe0e2713b37325", + "sha256:a71891847f0a73b1b9eb86d089baee301477abef45f7eaf303495cd1473613e4", + "sha256:aae7ea3a1c5bb40c93cad361b3e869b180ac174656120c42b9fadebf685d121b", + "sha256:ab1cdb0f14dc161ebc268c09db04d2c9e6f70027f3b42446fa11c153521c0e88", + "sha256:ab4ea451082e684198636565224bbb179575efc1658c48281b2c866bfd4ddf04", + "sha256:abf058be9517dc877227ec3223f0300034bd0e9f53aebd63cf4456c8cb1e0863", + "sha256:af36f36538418f3806048f3b242a1777e2540ff9efaa667c27da63d2749dbce0", + "sha256:b53e9ad053cd064f7e473a5f29b37fc4cc9dc6d35f341e6afc0155ea257fc911", + "sha256:b7851992faf25eac90bfcb7bfd19e1f5ffa00afd57daec8a0042e63c74a4551b", + "sha256:b9b759b77f5337b4ea024f03abc6464c9f35d9718de01cfe6bae9f2e139c397e", + "sha256:ba39688799094c75ea8a16a6b544eb57b5b0f3328697084f3f2790892510d144", + "sha256:ba6b6b3846cfc10fdb4c971980a954e49d447cd215ed5a77ec8190bc93dd7bc5", + "sha256:bb4c2eda937a5e74c38a41b33d8c77220380a388d689bcdb9b187cf6224c9720", + "sha256:c0b97ec434041827935044bbbe52b03d6018c2897349670ff8fe11ed24d1d4ab", + "sha256:c1452a1acdf914d194159439eb21e56b89aa903f2e1c65c60b9d874f9b950e5d", + "sha256:c2027d05c8aebe61d898d4cffd774840a9cb82ed356ba47a90d99ad768f39789", + "sha256:c2adbe22ab4babbca99c75c5d07aaf74f43c3195384ec07ccbd2f9e3bddaecec", + "sha256:c2d97e906b4ff36eb464d52a3bc7d720bd6261f64bc4bcdbcd2c557c02081ed2", + "sha256:c339dabd8ee15f8259ee0f202679b6324926e5bc9e9a40bf981ce77c038553db", + "sha256:c6eae413494a1c3f89055da7a5515f32e05ebc1a234c27674a6956755fb2236f", + "sha256:c949f04ecad823f81b1ba94e7d189d9dfb81edbb94ed3f8acfce41e682e48cef", + "sha256:c97bee68898f3f4344eb02fec316db93d9700fb1e6a5b760ffa20d71d9a46ce3", + "sha256:ca61d858e4107ce5e1330a74724fe757fc7135190eb5ce5c9d0191729f033209", + "sha256:cb4679d4c2b089e5ef89756bc73e1926745e995d76e11925e3e96a76d5fa51fc", + "sha256:cb774298da62aea5c80a89bd58c40205ab4c2abf4834453b5de207d59d2e1651", + "sha256:ccd4d5702bb90b84df13bd491be8d900b92016c5a455b7e14630ad7449eb03f8", + "sha256:cf9d3fe53b1ee360e2421be95e62ca9b3296bf3f2fb2d3b83ca49ad3f925835e", + "sha256:d2ae91f50ccc5810b2f1b6b858257c9ad2e08da70bf890dee02de1775a387c66", + "sha256:d37f8ec982ead9ba0a22a996129594938138a1503237b87318392a48882d50b7", + "sha256:d81e6987b27bc7d101c8597e1cd2bcaa2fee5e8e0f356735c7ed34368c471550", + "sha256:dcf4e6d85614f7a4956c2de5a56531f44efb973d2fe4a444d7251df5d5c4dcfd", + "sha256:de790a3b5aa2124b8b78ae5faa033937a72da8efe74b9231698b5a1dd9be3405", + "sha256:e47e9a08bcc04d20975b6434cc50bf82665fbc751bcce739d04a3120428f3e27", + "sha256:e60f112ac88db9261ad3a52032ea46388378034f3279c643499edb982536a093", + "sha256:e87fc540c6cac7f29ede02e0f989d4233f88ad439c5cdee56f693cc9c1c78077", + "sha256:eac5c82fc632c599f4639a5886f96867ffced74458c7db61bc9a66ccb8ee3113", + "sha256:ebb4e035e28f49b6f1a7032920bb9a0c064aedbbabe52c543343d39341a5b2a3", + "sha256:ec1e72d6412f7126eb7b2e3bfca42b15e6e389e1bc88ea0069d0cc1742f477c6", + "sha256:ef98ca7d5995a82f43ec0ab39c4caf6a9b994cb0b53648ff61716370eadc43cf", + "sha256:f0cbc7fff06a90bbd875cc201f94ef0ee3929dfbd5c55a06674b60857b8b85ed", + "sha256:f4791cf0f8c3104ac668797d8c514afb3431bc3305f5638add0ba1a5a37e0d88", + "sha256:f5e412d717366e0677ef767eac93566582518fe8be923361a5c204c1a62eaafe", + "sha256:fb2ed8b3fe4bf4506d6dab3b93b83bbc22237e230cba03866d561c3577517d18", + "sha256:fe0a5a1025eb797752136ac8b4fa21aa891e3d74fd340f864ff982d649691867" + ], + "markers": "python_version >= '3.7'", + "version": "==2.14.5" }, "pygithub": { "hashes": [ - "sha256:5822febeac2391f1306c55a99af2bc8f86c8bf82ded000030cd02c18f31b731f", - "sha256:c273f252b278fb81f1769505cc6921bdb6791e1cebd6ac850cc97dad13c31ff3" + "sha256:4b528d5d6f35e991ea5fd3f942f58748f24938805cb7fcf24486546637917337", + "sha256:ecf12c2809c44147bce63b047b3d2e9dac8a41b63e90fcb263c703f64936b97c" ], "index": "pypi", - "version": "==1.57" + "markers": "python_version >= '3.7'", + "version": "==2.1.1" }, "pygments": { "hashes": [ - "sha256:b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297", - "sha256:fa7bd7bd2771287c0de303af8bfdfc731f51bd2c6a47ab69d117138893b82717" + "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c", + "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367" ], - "markers": "python_version >= '3.6'", - "version": "==2.14.0" + "markers": "python_version >= '3.7'", + "version": "==2.17.2" }, "pyjwt": { + "extras": [ + "crypto" + ], "hashes": [ - "sha256:69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd", - "sha256:d83c3d892a77bbb74d3e1a2cfa90afaadb60945205d1095d9221f04466f64c14" + "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de", + "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320" ], "markers": "python_version >= '3.7'", - "version": "==2.6.0" + "version": "==2.8.0" }, "pynacl": { "hashes": [ @@ -403,73 +681,114 @@ }, "pytest": { "hashes": [ - "sha256:892f933d339f068883b6fd5a459f03d85bfcb355e4981e146d2c7616c21fef71", - "sha256:c4014eb40e10f11f355ad4e3c2fb2c6c6d1919c73f3b5a433de4708202cade59" + "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac", + "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5" + ], + "index": "pypi", + "markers": "python_version >= '3.7'", + "version": "==7.4.3" + }, + "pytest-html": { + "hashes": [ + "sha256:70a01e8ae5800f4a074b56a4cb1025c8f4f9b038bba5fe31e3c98eb996686f07", + "sha256:c8152cea03bd4e9bee6d525573b67bbc6622967b72b9628dda0ea3e2a0b5dd71" ], "index": "pypi", - "version": "==7.2.0" + "markers": "python_version >= '3.8'", + "version": "==4.1.1" + }, + "pytest-metadata": { + "hashes": [ + "sha256:769a9c65d2884bd583bc626b0ace77ad15dbe02dd91a9106d47fd46d9c2569ca", + "sha256:a17b1e40080401dc23177599208c52228df463db191c1a573ccdffacd885e190" + ], + "markers": "python_version >= '3.7'", + "version": "==3.0.0" }, "pytest-xdist": { "hashes": [ - "sha256:688da9b814370e891ba5de650c9327d1a9d861721a524eb917e620eec3e90291", - "sha256:9feb9a18e1790696ea23e1434fa73b325ed4998b0e9fcb221f16fd1945e6df1b" + "sha256:cbb36f3d67e0c478baa57fa4edc8843887e0f6cfc42d677530a36d7472b32d8a", + "sha256:d075629c7e00b611df89f490a5063944bee7a4362a5ff11c7cc7824a03dfce24" ], "index": "pypi", - "version": "==3.0.2" + "markers": "python_version >= '3.7'", + "version": "==3.5.0" + }, + "python-dateutil": { + "hashes": [ + "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86", + "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.8.2" }, "python-dotenv": { "hashes": [ - "sha256:1684eb44636dd462b66c3ee016599815514527ad99965de77f43e0944634a7e5", - "sha256:b77d08274639e3d34145dfa6c7008e66df0f04b7be7a75fd0d5292c191d79045" + "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba", + "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a" ], "index": "pypi", - "version": "==0.21.0" + "markers": "python_version >= '3.8'", + "version": "==1.0.0" }, "requests": { "hashes": [ - "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983", - "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349" + "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", + "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" ], "index": "pypi", - "version": "==2.28.1" + "markers": "python_version >= '3.7'", + "version": "==2.31.0" }, "rich": { "hashes": [ - "sha256:12b1d77ee7edf251b741531323f0d990f5f570a4e7c054d0bfb59fb7981ad977", - "sha256:3aa9eba7219b8c575c6494446a59f702552efe1aa261e7eeb95548fa586e1950" + "sha256:5cb5123b5cf9ee70584244246816e9114227e0b98ad9176eede6ad54bf5403fa", + "sha256:6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235" ], "index": "pypi", - "version": "==13.0.0" + "markers": "python_full_version >= '3.7.0'", + "version": "==13.7.0" }, "ruff": { "hashes": [ - "sha256:055438a8b3ba5de45e2bf606f2aae0c6b928b5fba3928ad008c3019440f40547", - "sha256:1f9121c656021720391b1ddba843813569910adf7c08b4c0ed325a4418ff4acd", - "sha256:2939a8360c45a76373554e426aae691b4dc785e1fec647a74626cb8c7ea9429c", - "sha256:29654591e610630f3c3614a4ae16524ac4e0baa2680cf7fc8676fd047cb3f1c6", - "sha256:3bea5d101c5918ff5b4bf997565667e4ea040fa9ec0ef98f63d5168c84219519", - "sha256:4185c328c78adabfb0417a3e7f86395f8d5b3bcfb0e763d6cdde7246c3d08b35", - "sha256:53495204366169766b501332909a245072f5bc6a976972150f4df5fef961c119", - "sha256:64826b12171080be6731d5d46494fbb51b90cf6593134bed5a76f424dc98a480", - "sha256:6c21e3f42eb2d943d8437b365b7ec3c6d7d98a6c742cf08fd385671744737e5e", - "sha256:71f87d4e841b18c8b2c1a1f9c04e822285cfac7786fcde4ae34d4b107ab0bc81", - "sha256:7cd622e5d4f6aa356b4193840a2ca39cf6eb6d37de80c4e54a79f61f7c6b52ef", - "sha256:a5765fe2434e85f6c058cdda2538e18a7c6c87594ee63f3999fe39f558ee7c63", - "sha256:be96ee774c3e30c2aa0314bf73e3f5144e8e1d5971d13e60bf2f4a07112de6f9", - "sha256:ce82f88a2e8ad530a8ae81886b4bcbb33ba12643e873bcd65c2193fdf96bf49f", - "sha256:d4d8f3646f678c0148ddc1477151f14068d35609681663a916aae643ae724a0f", - "sha256:e3b09c10cabae034babdc0864985101f417d26ad70fccdd0022593b9cbd8e0b6" + "sha256:03910e81df0d8db0e30050725a5802441c2022ea3ae4fe0609b76081731accbc", + "sha256:05991ee20d4ac4bb78385360c684e4b417edd971030ab12a4fbd075ff535050e", + "sha256:137852105586dcbf80c1717facb6781555c4e99f520c9c827bd414fac67ddfb6", + "sha256:1610e14750826dfc207ccbcdd7331b6bd285607d4181df9c1c6ae26646d6848a", + "sha256:1b09f29b16c6ead5ea6b097ef2764b42372aebe363722f1605ecbcd2b9207184", + "sha256:1cf5f701062e294f2167e66d11b092bba7af6a057668ed618a9253e1e90cfd76", + "sha256:3a0cd909d25f227ac5c36d4e7e681577275fb74ba3b11d288aff7ec47e3ae745", + "sha256:4558b3e178145491e9bc3b2ee3c4b42f19d19384eaa5c59d10acf6e8f8b57e33", + "sha256:491262006e92f825b145cd1e52948073c56560243b55fb3b4ecb142f6f0e9543", + "sha256:5c549ed437680b6105a1299d2cd30e4964211606eeb48a0ff7a93ef70b902248", + "sha256:683aa5bdda5a48cb8266fcde8eea2a6af4e5700a392c56ea5fb5f0d4bfdc0240", + "sha256:87455a0c1f739b3c069e2f4c43b66479a54dea0276dd5d4d67b091265f6fd1dc", + "sha256:88b8cdf6abf98130991cbc9f6438f35f6e8d41a02622cc5ee130a02a0ed28703", + "sha256:bd98138a98d48a1c36c394fd6b84cd943ac92a08278aa8ac8c0fdefcf7138f35", + "sha256:e8fd1c62a47aa88a02707b5dd20c5ff20d035d634aa74826b42a1da77861b5ff", + "sha256:ea284789861b8b5ca9d5443591a92a397ac183d4351882ab52f6296b4fdd5462", + "sha256:fd89b45d374935829134a082617954120d7a1470a9f0ec0e7f3ead983edc48cc" ], "index": "pypi", - "version": "==0.0.236" + "markers": "python_version >= '3.7'", + "version": "==0.1.6" }, "selenium": { "hashes": [ - "sha256:06a1c7d9f313130b21c3218ddd8852070d0e7419afdd31f96160cd576555a5ce", - "sha256:3aefa14a28a42e520550c1cd0f29cf1d566328186ea63aa9a3e01fb265b5894d" + "sha256:22eab5a1724c73d51b240a69ca702997b717eee4ba1f6065bf5d6b44dba01d48", + "sha256:9e82cd1ac647fb73cf0d4a6e280284102aaa3c9d94f0fa6e6cc4b5db6a30afbf" ], "index": "pypi", - "version": "==4.7.2" + "markers": "python_version >= '3.8'", + "version": "==4.15.2" + }, + "six": { + "hashes": [ + "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", + "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.16.0" }, "sniffio": { "hashes": [ @@ -486,122 +805,142 @@ ], "version": "==2.4.0" }, + "syrupy": { + "hashes": [ + "sha256:231b1f5d00f1f85048ba81676c79448076189c4aef4d33f21ae32f3b4c565a54", + "sha256:747aae1bcf3cb3249e33b1e6d81097874d23615982d5686ebe637875b0775a1b" + ], + "index": "pypi", + "markers": "python_version < '4' and python_full_version >= '3.8.1'", + "version": "==4.6.0" + }, "trio": { "hashes": [ - "sha256:ce68f1c5400a47b137c5a4de72c7c901bd4e7a24fbdebfe9b41de8c6c04eaacf", - "sha256:f1dd0780a89bfc880c7c7994519cb53f62aacb2c25ff487001c0052bd721cdf0" + "sha256:5a0b566fa5d50cf231cfd6b08f3b03aa4179ff004b8f3144059587039e2b26d3", + "sha256:da1d35b9a2b17eb32cae2e763b16551f9aa6703634735024e32f325c9285069e" ], - "markers": "python_version >= '3.7'", - "version": "==0.22.0" + "markers": "python_version >= '3.8'", + "version": "==0.23.2" }, "trio-websocket": { "hashes": [ - "sha256:5b558f6e83cc20a37c3b61202476c5295d1addf57bd65543364e0337e37ed2bc", - "sha256:a3d34de8fac26023eee701ed1e7bf4da9a8326b61a62934ec9e53b64970fd8fe" + "sha256:18c11793647703c158b1f6e62de638acada927344d534e3c7628eedcb746839f", + "sha256:520d046b0d030cf970b8b2b2e00c4c2245b3807853ecd44214acd33d74581638" ], - "markers": "python_version >= '3.5'", - "version": "==0.9.2" + "markers": "python_version >= '3.7'", + "version": "==0.11.1" }, "types-requests": { "hashes": [ - "sha256:091d4a5a33c1b4f20d8b1b952aa8fa27a6e767c44c3cf65e56580df0b05fd8a9", - "sha256:a7df37cc6fb6187a84097da951f8e21d335448aa2501a6b0a39cbd1d7ca9ee2a" + "sha256:b32b9a86beffa876c0c3ac99a4cd3b8b51e973fb8e3bd4e0a6bb32c7efad80fc", + "sha256:dc5852a76f1eaf60eafa81a2e50aefa3d1f015c34cf0cba130930866b1b22a92" ], "index": "pypi", - "version": "==2.28.11.5" + "markers": "python_version >= '3.7'", + "version": "==2.31.0.10" }, - "types-urllib3": { + "typing-extensions": { "hashes": [ - "sha256:ed6b9e8a8be488796f72306889a06a3fc3cb1aa99af02ab8afb50144d7317e49", - "sha256:eec5556428eec862b1ac578fb69aab3877995a99ffec9e5a12cf7fbd0cc9daee" + "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783", + "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd" ], - "version": "==1.26.25.4" + "markers": "python_version >= '3.8'", + "version": "==4.9.0" }, - "typing-extensions": { + "urllib3": { + "extras": [ + "socks" + ], "hashes": [ - "sha256:1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa", - "sha256:16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e" + "sha256:55901e917a5896a349ff771be919f8bd99aff50b79fe58fec595eb37bbc56bb3", + "sha256:df7aa8afb0148fa78488e7899b2c59b5f4ffcfa82e6c54ccb9dd37c1d7b52d54" ], - "markers": "python_version >= '3.7'", - "version": "==4.4.0" + "markers": "python_version >= '3.8'", + "version": "==2.1.0" }, - "urllib3": { + "websocket-client": { "hashes": [ - "sha256:076907bf8fd355cde77728471316625a4d2f7e713c125f51953bb5b3eecf4f72", - "sha256:75edcdc2f7d85b137124a6c3c9fc3933cdeaa12ecb9a6a959f22797a0feca7e1" + "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6", + "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588" ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", - "version": "==1.26.14" + "markers": "python_version >= '3.8'", + "version": "==1.7.0" }, "wrapt": { "hashes": [ - "sha256:00b6d4ea20a906c0ca56d84f93065b398ab74b927a7a3dbd470f6fc503f95dc3", - "sha256:01c205616a89d09827986bc4e859bcabd64f5a0662a7fe95e0d359424e0e071b", - "sha256:02b41b633c6261feff8ddd8d11c711df6842aba629fdd3da10249a53211a72c4", - "sha256:07f7a7d0f388028b2df1d916e94bbb40624c59b48ecc6cbc232546706fac74c2", - "sha256:11871514607b15cfeb87c547a49bca19fde402f32e2b1c24a632506c0a756656", - "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3", - "sha256:21ac0156c4b089b330b7666db40feee30a5d52634cc4560e1905d6529a3897ff", - "sha256:257fd78c513e0fb5cdbe058c27a0624c9884e735bbd131935fd49e9fe719d310", - "sha256:2b39d38039a1fdad98c87279b48bc5dce2c0ca0d73483b12cb72aa9609278e8a", - "sha256:2cf71233a0ed05ccdabe209c606fe0bac7379fdcf687f39b944420d2a09fdb57", - "sha256:2fe803deacd09a233e4762a1adcea5db5d31e6be577a43352936179d14d90069", - "sha256:3232822c7d98d23895ccc443bbdf57c7412c5a65996c30442ebe6ed3df335383", - "sha256:34aa51c45f28ba7f12accd624225e2b1e5a3a45206aa191f6f9aac931d9d56fe", - "sha256:36f582d0c6bc99d5f39cd3ac2a9062e57f3cf606ade29a0a0d6b323462f4dd87", - "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d", - "sha256:40e7bc81c9e2b2734ea4bc1aceb8a8f0ceaac7c5299bc5d69e37c44d9081d43b", - "sha256:43ca3bbbe97af00f49efb06e352eae40434ca9d915906f77def219b88e85d907", - "sha256:4fcc4649dc762cddacd193e6b55bc02edca674067f5f98166d7713b193932b7f", - "sha256:5a0f54ce2c092aaf439813735584b9537cad479575a09892b8352fea5e988dc0", - "sha256:5a9a0d155deafd9448baff28c08e150d9b24ff010e899311ddd63c45c2445e28", - "sha256:5b02d65b9ccf0ef6c34cba6cf5bf2aab1bb2f49c6090bafeecc9cd81ad4ea1c1", - "sha256:60db23fa423575eeb65ea430cee741acb7c26a1365d103f7b0f6ec412b893853", - "sha256:642c2e7a804fcf18c222e1060df25fc210b9c58db7c91416fb055897fc27e8cc", - "sha256:6a9a25751acb379b466ff6be78a315e2b439d4c94c1e99cb7266d40a537995d3", - "sha256:6b1a564e6cb69922c7fe3a678b9f9a3c54e72b469875aa8018f18b4d1dd1adf3", - "sha256:6d323e1554b3d22cfc03cd3243b5bb815a51f5249fdcbb86fda4bf62bab9e164", - "sha256:6e743de5e9c3d1b7185870f480587b75b1cb604832e380d64f9504a0535912d1", - "sha256:709fe01086a55cf79d20f741f39325018f4df051ef39fe921b1ebe780a66184c", - "sha256:7b7c050ae976e286906dd3f26009e117eb000fb2cf3533398c5ad9ccc86867b1", - "sha256:7d2872609603cb35ca513d7404a94d6d608fc13211563571117046c9d2bcc3d7", - "sha256:7ef58fb89674095bfc57c4069e95d7a31cfdc0939e2a579882ac7d55aadfd2a1", - "sha256:80bb5c256f1415f747011dc3604b59bc1f91c6e7150bd7db03b19170ee06b320", - "sha256:81b19725065dcb43df02b37e03278c011a09e49757287dca60c5aecdd5a0b8ed", - "sha256:833b58d5d0b7e5b9832869f039203389ac7cbf01765639c7309fd50ef619e0b1", - "sha256:88bd7b6bd70a5b6803c1abf6bca012f7ed963e58c68d76ee20b9d751c74a3248", - "sha256:8ad85f7f4e20964db4daadcab70b47ab05c7c1cf2a7c1e51087bfaa83831854c", - "sha256:8c0ce1e99116d5ab21355d8ebe53d9460366704ea38ae4d9f6933188f327b456", - "sha256:8d649d616e5c6a678b26d15ece345354f7c2286acd6db868e65fcc5ff7c24a77", - "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef", - "sha256:9736af4641846491aedb3c3f56b9bc5568d92b0692303b5a305301a95dfd38b1", - "sha256:988635d122aaf2bdcef9e795435662bcd65b02f4f4c1ae37fbee7401c440b3a7", - "sha256:9cca3c2cdadb362116235fdbd411735de4328c61425b0aa9f872fd76d02c4e86", - "sha256:9e0fd32e0148dd5dea6af5fee42beb949098564cc23211a88d799e434255a1f4", - "sha256:9f3e6f9e05148ff90002b884fbc2a86bd303ae847e472f44ecc06c2cd2fcdb2d", - "sha256:a85d2b46be66a71bedde836d9e41859879cc54a2a04fad1191eb50c2066f6e9d", - "sha256:a9a52172be0b5aae932bef82a79ec0a0ce87288c7d132946d645eba03f0ad8a8", - "sha256:aa31fdcc33fef9eb2552cbcbfee7773d5a6792c137b359e82879c101e98584c5", - "sha256:b014c23646a467558be7da3d6b9fa409b2c567d2110599b7cf9a0c5992b3b471", - "sha256:b21bb4c09ffabfa0e85e3a6b623e19b80e7acd709b9f91452b8297ace2a8ab00", - "sha256:b5901a312f4d14c59918c221323068fad0540e34324925c8475263841dbdfe68", - "sha256:b9b7a708dd92306328117d8c4b62e2194d00c365f18eff11a9b53c6f923b01e3", - "sha256:d1967f46ea8f2db647c786e78d8cc7e4313dbd1b0aca360592d8027b8508e24d", - "sha256:d52a25136894c63de15a35bc0bdc5adb4b0e173b9c0d07a2be9d3ca64a332735", - "sha256:d77c85fedff92cf788face9bfa3ebaa364448ebb1d765302e9af11bf449ca36d", - "sha256:d79d7d5dc8a32b7093e81e97dad755127ff77bcc899e845f41bf71747af0c569", - "sha256:dbcda74c67263139358f4d188ae5faae95c30929281bc6866d00573783c422b7", - "sha256:ddaea91abf8b0d13443f6dac52e89051a5063c7d014710dcb4d4abb2ff811a59", - "sha256:dee0ce50c6a2dd9056c20db781e9c1cfd33e77d2d569f5d1d9321c641bb903d5", - "sha256:dee60e1de1898bde3b238f18340eec6148986da0455d8ba7848d50470a7a32fb", - "sha256:e2f83e18fe2f4c9e7db597e988f72712c0c3676d337d8b101f6758107c42425b", - "sha256:e3fb1677c720409d5f671e39bac6c9e0e422584e5f518bfd50aa4cbbea02433f", - "sha256:ee2b1b1769f6707a8a445162ea16dddf74285c3964f605877a20e38545c3c462", - "sha256:ee6acae74a2b91865910eef5e7de37dc6895ad96fa23603d1d27ea69df545015", - "sha256:ef3f72c9666bba2bab70d2a8b79f2c6d2c1a42a7f7e2b0ec83bb2f9e383950af" - ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", - "version": "==1.14.1" + "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc", + "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81", + "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09", + "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e", + "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca", + "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0", + "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb", + "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487", + "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40", + "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c", + "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060", + "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202", + "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41", + "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9", + "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b", + "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664", + "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d", + "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362", + "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00", + "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc", + "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1", + "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267", + "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956", + "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966", + "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1", + "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228", + "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72", + "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d", + "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292", + "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0", + "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0", + "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36", + "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c", + "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5", + "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f", + "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73", + "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b", + "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2", + "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593", + "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39", + "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389", + "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf", + "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf", + "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89", + "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c", + "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c", + "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f", + "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440", + "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465", + "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136", + "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b", + "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8", + "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3", + "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8", + "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6", + "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e", + "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f", + "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c", + "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e", + "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8", + "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2", + "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020", + "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35", + "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d", + "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3", + "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537", + "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809", + "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d", + "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a", + "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4" + ], + "markers": "python_version >= '3.6'", + "version": "==1.16.0" }, "wsproto": { "hashes": [ @@ -613,11 +952,11 @@ }, "zipp": { "hashes": [ - "sha256:83a28fcb75844b5c0cdaf5aa4003c2d728c77e05f5aeabe8e95e56727005fbaa", - "sha256:a7a22e05929290a67401440b39690ae6563279bced5f314609d9d03798f56766" + "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31", + "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0" ], - "markers": "python_version >= '3.7'", - "version": "==3.11.0" + "markers": "python_version >= '3.8'", + "version": "==3.17.0" } }, "develop": {} diff --git a/app-testing/README.md b/app-testing/README.md index 19e8f937ee3..9327b2814af 100644 --- a/app-testing/README.md +++ b/app-testing/README.md @@ -11,31 +11,35 @@ Slices of the tests will be selected as candidates for automation and then perfo ## Steps 1. Have pyenv installed per [DEV_SETUP.md](../DEV_SETUP.md) - 1. Install python 3.11 + 1. Install python 3.12 2. Install the Opentrons application on your machine. 1. 2. This could also be done by building the installer on a branch and installing the App. 1. for Mac 1. `make -C app-shell dist-osx` 3. Install Chromedriver - = 1. in the app-testing directory 1. `sudo ./ci-tools/mac_get_chromedriver.sh 21.3.1` per the version of electron in the repository root package.json (`/opentrons/package.json`) for electron 1. Windows `sudo .\ci-tools\windows_get_chromedriver.ps1 -version 21.3.1` 1. if you experience `wget: command not found` 1. brew install wget and try again 2. when you run `chromedriver --version` 1. It should work 2. It should output the below. The chromedriver version must match Electron version we build into the App. 1. ChromeDriver 106.0.5249.181 (7e86549ea18ccbc17d7b600e3cd4190f45db35c7-refs/heads/main@{#1045491}) + 1. in the app-testing directory + 2. `sudo ./citools/{YOUR_OS}_get_chromedriver.sh 21.3.1` passing the version of electron in the repository root [package.json](`/opentrons/package.json`) for electron + 3. windows example using sudo (scoop install sudo): `sudo .\citools\windows_get_chromedriver.ps1 21.3.1` + 4. run `chromedriver --version` to verify 4. Create .env from example.env `cp example.env .env` 1. Fill in values (if there are secrets) 2. Make sure the paths work on your machine 5. Install pipenv globally against the python version you are using in this module. 1. pip install -U pipenv + 2. note: the rest of the monorepo uses pipenv but pinned at `pipenv==2021.5.29` 6. In the app-testing directory (make, python, pipenv required on your path) 1. `make teardown` 2. `make setup` 7. Run all tests 1. `make test` 8. Run specific test(s) - 1. `pipenv run python -m pytest -k test_labware_landing` - 1. [See docs on pytest -k flag](https://docs.pytest.org/en/6.2.x/usage.html#specifying-tests-selecting-tests) + 1. `pipenv run python -m pytest -k protocol_analyze_test` + 1. [See docs on pytest -k flag](https://docs.pytest.org/en/7.4.x/usage.html#specifying-tests-selecting-tests) ## Tools -python 3.11.0 - manage python with [pyenv](https://realpython.com/intro-to-pyenv) +python 3.12.0 - manage python with [pyenv](https://realpython.com/intro-to-pyenv) [pipenv](https://pipenv.pypa.io/en/latest/) ## Locator Tool @@ -59,26 +63,6 @@ pipenv run python -i locators.py > sometimes chromedriver does not cleanly exit. > `pkill -x chromedriver` -## Emulation - -We have made the choice to setup all test runs local and in CI against this emulator [config](./ci-tools/ot2_with_all_modules.yaml) - -To use locally setup the [emulator](https://github.com/Opentrons/opentrons-emulation) - -run our expected config - -```shell -make run file_path=$MONOREPOPATH/app-testing/ci-tools/ot2_with_all_modules.yaml -``` - -ctrl-c to stop - -remove the containers (this resets calibration, stopping them does not) - -```shell -make remove file_path=$MONOREPOPATH/app-testing/ci-tools/ot2_with_all_modules.yaml -``` - ## Gotchas - Only have 1 robot connected at once. @@ -89,9 +73,14 @@ make remove file_path=$MONOREPOPATH/app-testing/ci-tools/ot2_with_all_modules.ya The analysis test `pipenv run pytest -k test_analyses` is driven by the comma delimited string variable `APP_ANALYSIS_TEST_PROTOCOLS` in `.env` This allows us to run one or many. -### Adding protocols +### Adding protocols to the analysis test 1. add the protocol file named according to the naming convention in the files/protocols appropriate folder 1. add the protocol stem to `protocol_files.py` 1. add the protocol data as a property to `protocols.py` 1. run `make print-protocols` + +### Analyses Snapshot Test + +- run the Workflow Dispatch job + - `gh workflow run 'Analyses Snapshot Test' --ref 7.1-analyses-battery -f TARGET=v7.1.0-alpha.10 -f TEST_SOURCE=7.1-analyses-battery` diff --git a/app-testing/analysis_results/.keep-me b/app-testing/analysis_results/.keep-me new file mode 100644 index 00000000000..e69de29bb2d diff --git a/app-testing/automation/data/protocol.py b/app-testing/automation/data/protocol.py index 7301b3aebe2..bda7d4762d7 100644 --- a/app-testing/automation/data/protocol.py +++ b/app-testing/automation/data/protocol.py @@ -15,7 +15,7 @@ class Protocol(BaseModel): file_name: names = Field(description="file name not including extension") file_extension: Literal["json", "py"] = Field(description="file extension of the protocol") protocol_name: str = Field(description="the protocol name which will appear in the protocol name field in the app") - robot: Literal["OT-2", "OT-3"] = Field(description="the robot type which will appear in the robot field in the app") + robot: Literal["OT-2", "Flex"] = Field(description="the robot type which will appear in the robot field in the app") app_error: bool = Field(description="will analysis with the app raise an error") robot_error: bool = Field(description="will analysis with the robot raise an error") app_analysis_error: Optional[str] = Field(description="the exact error shown in the app popout", default=None) diff --git a/app-testing/automation/data/protocol_files.py b/app-testing/automation/data/protocol_files.py index 97e30cfb6a0..b9f89115900 100644 --- a/app-testing/automation/data/protocol_files.py +++ b/app-testing/automation/data/protocol_files.py @@ -30,32 +30,33 @@ "OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps", "OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase", "OT2_P300SLeft_MM1_MM_TM_2_3_Mix", - "OT3_None_None_2_16_AnalysisError_AccessToFixedTrashProp", - "OT3_None_None_2_16_AnalysisError_TrashBinInCol2", - "OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3", - "OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4", - "OT3_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol", - "OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3", - "OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4", - "OT3_None_None_TM_2_16_AnalysisError_ModuleInCol2", - "OT3_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria", - "OT3_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash", - "OT3_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin", - "OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures", - "OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules", - "OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures", - "OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1", - "OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke", - "OT3_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel", - "OT3_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch", - "OT3_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III", - "OT3_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR", - "OT3_P1000_96_None_2_16_AnalysisError_TrashBinInStagingAreaCol3", - "OT3_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict", - "OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4", - "OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment", - "OT3_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x", - "OT3_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right", - "OT3_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol", - "OT3_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2", + "OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume", + "Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp", + "Flex_None_None_2_16_AnalysisError_TrashBinInCol2", + "Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3", + "Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4", + "Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol", + "Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3", + "Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4", + "Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2", + "Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria", + "Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash", + "Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin", + "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures", + "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules", + "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures", + "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1", + "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke", + "Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel", + "Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch", + "Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III", + "Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR", + "Flex_P1000_96_None_2_16_AnalysisError_TrashBinInStagingAreaCol3", + "Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict", + "Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4", + "Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment", + "Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x", + "Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right", + "Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol", + "Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2", ] diff --git a/app-testing/automation/data/protocols.py b/app-testing/automation/data/protocols.py index 9e3894ff190..102b0faf683 100644 --- a/app-testing/automation/data/protocols.py +++ b/app-testing/automation/data/protocols.py @@ -285,117 +285,117 @@ class Protocols: robot_error=False, ) - OT3_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria: Protocol = Protocol( - file_name="OT3_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria", + OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume: Protocol = Protocol( + file_name="OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume", + file_extension="py", + protocol_name="OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume.py", + robot="OT-2", + app_error=False, + robot_error=False, + ) + + Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria: Protocol = Protocol( + file_name="Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria", file_extension="py", protocol_name="Quick Zymo Magbead RNA Extraction with Lysis: Bacteria 96 Channel Deletion Test", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, custom_labware=["opentrons_ot3_96_tiprack_1000ul_rss"], ) - - OT3_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel: Protocol = Protocol( - file_name="OT3_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel", + Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel: Protocol = Protocol( + file_name="Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel", file_extension="py", protocol_name="Omega HDQ DNA Extraction: Bacteria 96 FOR ABR TESTING", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, custom_labware=["opentrons_ot3_96_tiprack_1000ul_rss"], ) - - OT3_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch: Protocol = Protocol( - file_name="OT3_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch", + Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch: Protocol = Protocol( + file_name="Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch", file_extension="py", protocol_name="MagMax RNA Extraction: Cells 96 ABR TESTING", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, custom_labware=["opentrons_ot3_96_tiprack_200ul_rss"], ) - - OT3_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III: Protocol = Protocol( - file_name="OT3_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III", + Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III: Protocol = Protocol( + file_name="Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III", file_extension="py", protocol_name="Illumina DNA Prep 96x Head PART III", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, custom_labware=["opentrons_ot3_96_tiprack_200ul_rss", "opentrons_ot3_96_tiprack_50ul_rss"], ) - - OT3_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR: Protocol = Protocol( - file_name="OT3_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR", + Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR: Protocol = Protocol( + file_name="Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR", file_extension="py", protocol_name="IDT xGen EZ 96x Head PART I-III ABR", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, custom_labware=["opentrons_ot3_96_tiprack_50ul_rss", "opentrons_ot3_96_tiprack_200ul_rss"], ) - - OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4: Protocol = Protocol( - file_name="OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4", + Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4: Protocol = Protocol( + file_name="Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4", file_extension="py", protocol_name="Illumina DNA Enrichment v4", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) - - OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment: Protocol = Protocol( - file_name="OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment", + Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment: Protocol = Protocol( + file_name="Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment", file_extension="py", protocol_name="Illumina DNA Enrichment", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) - - OT3_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x: Protocol = Protocol( - file_name="OT3_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x", + Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x: Protocol = Protocol( + file_name="Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x", file_extension="py", protocol_name="Illumina DNA Prep 24x", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) - - OT3_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right: Protocol = Protocol( - file_name="OT3_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right", + Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right: Protocol = Protocol( + file_name="Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right", file_extension="py", - protocol_name="OT3 ABR Simple Normalize Long", - robot="OT-3", + protocol_name="Flex ABR Simple Normalize Long", + robot="Flex", app_error=False, robot_error=False, custom_labware=["opentrons_ot3_96_tiprack_200ul_rss"], ) - - OT3_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2: Protocol = Protocol( - file_name="OT3_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2", + Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2: Protocol = Protocol( + file_name="Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2", file_extension="py", - protocol_name="OT3 ABR KAPA Library Quant v2", - robot="OT-3", + protocol_name="Flex ABR KAPA Library Quant v2", + robot="Flex", app_error=False, robot_error=False, ) - OT3_None_None_2_16_AnalysisError_TrashBinInCol2: Protocol = Protocol( - file_name="OT3_None_None_2_16_AnalysisError_TrashBinInCol2", + Flex_None_None_2_16_AnalysisError_TrashBinInCol2: Protocol = Protocol( + file_name="Flex_None_None_2_16_AnalysisError_TrashBinInCol2", file_extension="py", protocol_name="QA Protocol - Analysis Error - Trash Bin in Column 2", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="InvalidTrashBinLocationError [line 15]: Invalid location for trash bin: C2. Valid slots: Any slot in column 1 or 3.", # noqa: E501 ) - OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3: Protocol = Protocol( - file_name="OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3", + Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3: Protocol = Protocol( + file_name="Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3", file_extension="py", protocol_name="QA Protocol - Analysis Error - Trash Bin in Staging Area Column 3", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ProtocolCommandFailedError [line 21]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): IncompatibleAddressableAreaError: Cannot use Trash Bin in C3, not compatible with one or more of the following fixtures: Slot C4", # noqa: E501 @@ -403,31 +403,31 @@ class Protocols: expected_test_reason="Analysis does not throw error when modules or fixtures are in staging area column 3.", # noqa: E501 ) - OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4: Protocol = Protocol( - file_name="OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4", + Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4: Protocol = Protocol( + file_name="Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4", file_extension="py", protocol_name="QA Protocol - Analysis Error - Trash Bin in Staging Area Column 4", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ValueError [line 15]: Staging areas not permitted for trash bin.", # noqa: E501 ) - OT3_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash: Protocol = Protocol( - file_name="OT3_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash", + Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash: Protocol = Protocol( + file_name="Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash", file_extension="py", protocol_name="QA Protocol - Analysis Error - Drop Tips with no Trash", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="NoTrashDefinedError [line 24]: Error 4000 GENERAL_ERROR (NoTrashDefinedError): No trash container has been defined in this protocol.", # noqa: E501 ) - OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3: Protocol = Protocol( - file_name="OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3", + Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3: Protocol = Protocol( + file_name="Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3", file_extension="py", protocol_name="QA Protocol - Analysis Error - Module in Staging Area Column 3", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="InvalidModuleError [line 19]: Error 4000 GENERAL_ERROR (InvalidModuleError): Cannot use temperature module in C3, not compatible with one or more of the following fixtures: Slot C4", # noqa: E501 @@ -435,117 +435,117 @@ class Protocols: expected_test_reason="Analysis does not throw error when modules or fixtures are in staging area column 3.", # noqa: E501 ) - OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4: Protocol = Protocol( - file_name="OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4", + Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4: Protocol = Protocol( + file_name="Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4", file_extension="py", protocol_name="QA Protocol - Analysis Error - Module in Staging Area Column 4", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ValueError [line 15]: Cannot load a module onto a staging slot.", # noqa: E501 ) - OT3_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict: Protocol = Protocol( - file_name="OT3_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict", + Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict: Protocol = Protocol( + file_name="Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict", file_extension="py", protocol_name="QA Protocol - Analysis Error - Module and Waste Chute Conflict", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ProtocolCommandFailedError [line 25]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): IncompatibleAddressableAreaError: Cannot use Waste Chute, not compatible with one or more of the following fixtures: Slot D3", # noqa: E501 ) - OT3_None_None_2_16_AnalysisError_AccessToFixedTrashProp: Protocol = Protocol( - file_name="OT3_None_None_2_16_AnalysisError_AccessToFixedTrashProp", + Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp: Protocol = Protocol( + file_name="Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp", file_extension="py", protocol_name="QA Protocol - Analysis Error - Access to Fixed Trash Property", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="APIVersionError [line 15]: Fixed Trash is not supported on Flex protocols in API Version 2.16 and above.", # noqa: E501 ) - OT3_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin: Protocol = Protocol( - file_name="OT3_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin", + Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin: Protocol = Protocol( + file_name="Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin", file_extension="py", protocol_name="QA Protocol - Analysis Error - Drop Labware in Trash Bin", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ProtocolCommandFailedError [line 20]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): IncompatibleAddressableAreaError: Cannot use Slot C3, not compatible with one or more of the following fixtures: Trash Bin in C3", # noqa: E501 ) - OT3_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol: Protocol = Protocol( - file_name="OT3_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol", + Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol: Protocol = Protocol( + file_name="Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol", file_extension="py", protocol_name="QA Protocol - Analysis Error - OT-2 Pipette in Flex Protocol", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ProtocolCommandFailedError [line 22]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): InvalidSpecificationForRobotTypeError: Cannot load a Gen2 pipette on a Flex.", # noqa: E501 ) - OT3_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol: Protocol = Protocol( - file_name="OT3_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol", + Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol: Protocol = Protocol( + file_name="Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol", file_extension="py", protocol_name="QA Protocol - Analysis Error - Magnetic Module in Flex Protocol", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ValueError [line 15]: A magneticModuleType cannot be loaded into slot C1", # noqa: E501 ) - OT3_None_None_TM_2_16_AnalysisError_ModuleInCol2: Protocol = Protocol( - file_name="OT3_None_None_TM_2_16_AnalysisError_ModuleInCol2", + Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2: Protocol = Protocol( + file_name="Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2", file_extension="py", protocol_name="QA Protocol - Analysis Error - Module in Column 2", - robot="OT-3", + robot="Flex", app_error=True, robot_error=False, app_analysis_error="ValueError [line 15]: A temperatureModuleType cannot be loaded into slot C2", # noqa: E501 ) - OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures: Protocol = Protocol( - file_name="OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures", + Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures: Protocol = Protocol( + file_name="Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures", file_extension="py", protocol_name="QA Protocol - Deck Configuration 1 - No Fixtures", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) - OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules: Protocol = Protocol( - file_name="OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules", + Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules: Protocol = Protocol( + file_name="Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules", file_extension="py", protocol_name="QA Protocol - Deck Configuration 1 - No Modules", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) - OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures: Protocol = Protocol( - file_name="OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures", + Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures: Protocol = Protocol( + file_name="Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures", file_extension="py", protocol_name="QA Protocol - Deck Configuration 1 - No Modules or Fixtures", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) - OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1: Protocol = Protocol( - file_name="OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1", + Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1: Protocol = Protocol( + file_name="Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1", file_extension="py", protocol_name="QA Protocol - Deck Configuration 1", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) - OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke: Protocol = Protocol( - file_name="OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke", + Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke: Protocol = Protocol( + file_name="Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke", file_extension="py", protocol_name="QA Protocol - MEGAAA PROTOCOL - LETS BREAK, I MEAN TEST, EVERYTHING!!!!!", - robot="OT-3", + robot="Flex", app_error=False, robot_error=False, ) diff --git a/app-testing/automation/driver/base.py b/app-testing/automation/driver/base.py index 2a5c2398233..7ff6e5f39af 100644 --- a/app-testing/automation/driver/base.py +++ b/app-testing/automation/driver/base.py @@ -57,16 +57,17 @@ def apply_border_to_locator( def apply_style(argument: str) -> None: """Execute the javascript to apply the style.""" - self.driver.execute_script( - "arguments[0].setAttribute('style', arguments[1]);", finder(), argument - ) # type: ignore + self.driver.execute_script("arguments[0].setAttribute('style', arguments[1]);", finder(), argument) # type: ignore original_style = finder().get_attribute("style") apply_style(f"border: {border_size_px}px solid {color};") if screenshot: self.take_screenshot(message=screenshot_message) time.sleep(effect_time_sec) - apply_style(original_style) + if original_style is None: + apply_style("") + else: + apply_style(original_style) def apply_border_to_element( self, @@ -81,16 +82,17 @@ def apply_border_to_element( def apply_style(argument: str) -> None: """Execute the javascript to apply the style.""" - self.driver.execute_script( - "arguments[0].setAttribute('style', arguments[1]);", element, argument - ) # type: ignore + self.driver.execute_script("arguments[0].setAttribute('style', arguments[1]);", element, argument) # type: ignore original_style = element.get_attribute("style") apply_style(f"border: {border_size_px}px solid {color};") if screenshot: self.take_screenshot(message=screenshot_message) time.sleep(effect_time_sec) - apply_style(original_style) + if original_style is None: + apply_style("") + else: + apply_style(original_style) def highlight_element(self, finder: Callable[..., WebElement]) -> None: """Highlight an element.""" @@ -118,9 +120,7 @@ def take_screenshot(self, message: str = "") -> None: os.makedirs(directory_for_results) note = "" if (message == "") else f"_{message}".replace(" ", "_") file_name = ( - f"{str(time.time_ns())[:-3]}_{self.execution_id}".replace("/", "_").replace("::", "__").replace(".py", "") - + note - + ".png" + f"{str(time.time_ns())[:-3]}_{self.execution_id}".replace("/", "_").replace("::", "__").replace(".py", "") + note + ".png" ) screenshot_full_path: str = str(Path(directory_for_results, file_name)) self.console.print(f"screenshot saved: {file_name}", style="white on blue") @@ -188,9 +188,7 @@ def create_finder( ) def finder() -> Any: - return WebDriverWait(self.driver, timeout_sec, ignored_exceptions=ignored_exceptions).until( - expected_condition(element.locator) - ) + return WebDriverWait(self.driver, timeout_sec, ignored_exceptions=ignored_exceptions).until(expected_condition(element.locator)) return finder diff --git a/app-testing/automation/pages/app_settings.py b/app-testing/automation/pages/app_settings.py index b7eb0289cfc..d5480a1678d 100644 --- a/app-testing/automation/pages/app_settings.py +++ b/app-testing/automation/pages/app_settings.py @@ -471,8 +471,8 @@ def click_enable_developer_tools_toggle(self) -> None: tests. The click works but has no effect. """ button = self.get_enable_developer_tools_toggle() - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(button).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(button).perform() self.base.click(self.enable_developer_tools_toggle) # Elements for Feature Flag diff --git a/app-testing/automation/pages/device_landing.py b/app-testing/automation/pages/device_landing.py index 425ec0d3916..b2d32885fbf 100644 --- a/app-testing/automation/pages/device_landing.py +++ b/app-testing/automation/pages/device_landing.py @@ -164,7 +164,10 @@ def get_lights_status(self) -> bool: if not button: # None check but the finder throws so should never be hit return False # get the status of the toggle - return button.get_attribute("aria-checked").lower() == "true" + aria: str | None = button.get_attribute("aria-checked") + if not aria: # None check but the finder throws so *should* never be hit + return False + return aria.lower() == "true" def set_lights(self, on: bool) -> bool: """Set the lights toggle. Return a bool of the condition: final light state == the desired state.""" @@ -540,8 +543,8 @@ def is_deck_calibrated(self) -> bool: def get_pipette_calibration_overflow_1(self) -> WebElement: """Get the first pipette three dot menu button.""" scroll: WebElement = self.base.clickable_wrapper(self.pipette_calibration_overflow_1, 3) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(scroll).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(scroll).perform() return scroll def click_pipette_calibration_overflow_1(self) -> None: @@ -556,8 +559,8 @@ def click_pipette_calibration_overflow_1(self) -> None: def get_pipette_calibration_overflow_2(self) -> WebElement: """Get the first pipette three dot menu button.""" scroll: WebElement = self.base.clickable_wrapper(self.pipette_calibration_overflow_2, 3) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(scroll).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(scroll).perform() return scroll def click_pipette_calibration_overflow_2(self) -> None: @@ -573,8 +576,8 @@ def click_pipette_calibration_overflow_2(self) -> None: def click_pipette_offset_calibrate_button(self) -> None: """Click the calibrate button.""" scroll: WebElement = self.base.clickable_wrapper(self.calibrate_pipette_offset_button, 3) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(scroll).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(scroll).perform() self.base.click(self.calibrate_pipette_offset_button) # pipette calibration @@ -665,9 +668,9 @@ def click_continue_to_pipette_offset(self) -> None: def shift_down_arrow_key(self) -> None: """Send the keystroke shift + down arrow key.""" - actions = ActionChains(self.base.driver) # type: ignore - actions.send_keys(Keys.LEFT_SHIFT + Keys.ARROW_DOWN) # type: ignore - actions.perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.send_keys(Keys.LEFT_SHIFT + Keys.ARROW_DOWN) + actions.perform() save_calibration_move_to_slot_1: Element = Element( (By.XPATH, '//button[text()="save calibration and move to slot 1"]'), @@ -683,9 +686,9 @@ def click_save_calibration_move_to_slot_1(self) -> None: def up_arrow_key(self) -> None: """Send the keystroke arrow up key.""" - actions = ActionChains(self.base.driver) # type: ignore - actions.send_keys(Keys.ARROW_UP) # type: ignore - actions.perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.send_keys(Keys.ARROW_UP) + actions.perform() save_calibration: Element = Element( (By.XPATH, '//button[text()="save calibration"]'), diff --git a/app-testing/automation/pages/labware_position_check.py b/app-testing/automation/pages/labware_position_check.py index fdbbd12a0d7..1db45492a38 100644 --- a/app-testing/automation/pages/labware_position_check.py +++ b/app-testing/automation/pages/labware_position_check.py @@ -388,8 +388,8 @@ def __init__(self, driver: WebDriver, console: Console, execution_id: str) -> No def get_labware_position_check_button(self) -> WebElement: """Button to locate LPC button.""" button = self.base.clickable_wrapper(self.labware_setup_position_check_button, 2) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(button).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(button).perform() return button def get_labware_success_toast(self) -> WebElement: @@ -423,8 +423,8 @@ def get_labware_position_check_complete(self) -> WebElement: def click_labware_position_button(self) -> None: """Click labware position button.""" button = self.base.clickable_wrapper(self.labware_setup_position_check_button, 2) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(button).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(button).perform() self.base.click(self.labware_setup_position_check_button) def get_introScreen_labware_position_check_overview(self) -> WebElement: @@ -506,8 +506,8 @@ def click_down_jog_button(self) -> None: def get_confirm_position_button_pickup_tip(self) -> WebElement: """Locator for confirm position button pickup.""" toggle: WebElement = self.base.clickable_wrapper(self.confirm_position_button_pickup_tip, 5) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def click_confirm_position_button_pickup_tip(self) -> None: @@ -518,8 +518,8 @@ def click_confirm_position_button_pickup_tip(self) -> None: def get_confirm_position_moveto_slot_2(self) -> WebElement: """Locator for confirm position moveto slot.""" toggle: WebElement = self.base.clickable_wrapper(self.confirm_position_moveto_slot_2, 5) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def click_confirm_position_moveto_slot_2(self) -> None: @@ -530,8 +530,8 @@ def click_confirm_position_moveto_slot_2(self) -> None: def get_confirm_position_moveto_slot_5(self) -> WebElement: """Locator for confirm position move to slot.""" toggle: WebElement = self.base.clickable_wrapper(self.confirm_position_moveto_slot_5, 5) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def click_confirm_position_moveto_slot_5(self) -> None: @@ -542,8 +542,8 @@ def click_confirm_position_moveto_slot_5(self) -> None: def get_confirm_position_moveto_slot_6(self) -> WebElement: """Locator for confirm position moveto slot.""" toggle: WebElement = self.base.clickable_wrapper(self.confirm_position_moveto_slot_6, 5) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def click_confirm_position_moveto_slot_6(self) -> None: diff --git a/app-testing/automation/pages/labware_setup.py b/app-testing/automation/pages/labware_setup.py index e0dae8f9918..514a8916716 100644 --- a/app-testing/automation/pages/labware_setup.py +++ b/app-testing/automation/pages/labware_setup.py @@ -133,29 +133,29 @@ def get_thermocycler_module_modal_text(self) -> WebElement: def get_close_button(self) -> WebElement: """Locator for close button.""" toggle: WebElement = self.base.clickable_wrapper(LabwareSetup.close_button) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def click_close_button(self) -> None: """Click close button.""" toggle: WebElement = self.base.clickable_wrapper(LabwareSetup.close_button) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() self.base.click(LabwareSetup.close_button) def get_proceed_to_run_button(self) -> WebElement: """Locator for proceed to run button.""" scroll: WebElement = self.base.clickable_wrapper(LabwareSetup.proceed_to_run_button) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(scroll).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(scroll).perform() return scroll def click_proceed_to_run_button(self) -> None: """Click proceed to run.""" scroll: WebElement = self.base.clickable_wrapper(LabwareSetup.proceed_to_run_button) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(scroll).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(scroll).perform() self.base.click(LabwareSetup.proceed_to_run_button) def get_start_run_button(self) -> WebElement: diff --git a/app-testing/automation/pages/module_setup.py b/app-testing/automation/pages/module_setup.py index 2afd0ad6ae6..20b024b807f 100644 --- a/app-testing/automation/pages/module_setup.py +++ b/app-testing/automation/pages/module_setup.py @@ -69,29 +69,29 @@ def get_temperature_module(self) -> WebElement: def get_module_setup_text_locator(self) -> WebElement: """Locator for module setup text.""" toggle: WebElement = self.base.clickable_wrapper(ModuleSetup.module_setup_text_locator) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def get_magnetic_module(self) -> WebElement: """Locator for magnetic module on deckmap.""" toggle: WebElement = self.base.clickable_wrapper(ModuleSetup.magnetic_module) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def get_proceed_to_labware_setup(self) -> WebElement: """Locator for proceed to labware setup.""" toggle: WebElement = self.base.clickable_wrapper(ModuleSetup.proceed_to_labware_setup) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() return toggle def click_proceed_to_labware_setup(self) -> None: """Proceed to labware setup.""" toggle: WebElement = self.base.clickable_wrapper(ModuleSetup.proceed_to_labware_setup) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() self.base.click(ModuleSetup.proceed_to_labware_setup) def click_proceed_to_module_setup(self) -> None: @@ -101,6 +101,6 @@ def click_proceed_to_module_setup(self) -> None: def click_module_setup_text(self) -> None: """Click module setup text.""" toggle: WebElement = self.base.clickable_wrapper(ModuleSetup.module_setup_text_locator) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(toggle).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(toggle).perform() self.base.click(ModuleSetup.module_setup_text_locator) diff --git a/app-testing/automation/pages/setup_calibration.py b/app-testing/automation/pages/setup_calibration.py index 7006ab18242..ea9589f027f 100644 --- a/app-testing/automation/pages/setup_calibration.py +++ b/app-testing/automation/pages/setup_calibration.py @@ -90,9 +90,7 @@ def __init__(self, driver: WebDriver, console: Console, execution_id: str) -> No "close robot calibration button", ) - proceed_to_module_setup_cta: Element = Element( - (By.ID, "RobotCalStep_proceedButton"), "proceed to module setup button" - ) + proceed_to_module_setup_cta: Element = Element((By.ID, "RobotCalStep_proceedButton"), "proceed to module setup button") def get_setup_for_run(self) -> WebElement: """Search for the setup for run text.""" @@ -129,8 +127,8 @@ def get_robot_calibration_help_modal_text(self) -> WebElement: def get_robot_calibration_close_button(self) -> WebElement: """Robot claibration close button.""" close: WebElement = self.base.clickable_wrapper(SetupCalibration.close_robot_calibration_button) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(close).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(close).perform() return close def click_robot_calibration_help_link(self) -> None: @@ -140,8 +138,8 @@ def click_robot_calibration_help_link(self) -> None: def click_robot_calibration_close_button(self) -> None: """Click robot calibration close.""" close: WebElement = self.base.clickable_wrapper(SetupCalibration.close_robot_calibration_button) - actions = ActionChains(self.base.driver) # type: ignore - actions.move_to_element(close).perform() # type: ignore + actions = ActionChains(self.base.driver) + actions.move_to_element(close).perform() self.base.click(SetupCalibration.close_robot_calibration_button) def get_required_tip_length_calibration(self) -> WebElement: diff --git a/app-testing/ci-tools/ot2_with_all_modules.yaml b/app-testing/ci-tools/ot2_with_all_modules.yaml deleted file mode 100644 index d9c1957446c..00000000000 --- a/app-testing/ci-tools/ot2_with_all_modules.yaml +++ /dev/null @@ -1,65 +0,0 @@ -###################### -# System Description # -###################### - -# This system builds an OT2 and 1 of each module. - - # - name: Substitute current sha into yaml - # id: sub-step - # uses: Opentrons/opentrons-emulation@release-v2.3.1 - # with: - # command: yaml-sub - # substitutions: >- - # [ - # ["otie", "source-location", "${{ github.sha }}"], - # ["t00-hot-to-handle", "source-location", "${{ github.sha }}"], - # ["fatal-attraction", "source-location", "${{ github.sha }}"], - # ["temperamental", "source-location", "${{ github.sha }}"], - # ["maggy", "source-location", "${{ github.sha }}"], - # ] - # input-file: ${{ github.workspace }}/ot3-firmware/emulation_setups/ci/ot3_only.yaml - # output-file-location: ${{ github.workspace }}/output.yaml - -system-unique-id: ot2-with-all-modules -robot: - id: otie - hardware: ot2 - source-type: remote - source-location: latest - emulation-level: firmware - robot-server-source-type: remote - robot-server-source-location: latest - exposed-port: 31950 - hardware-specific-attributes: - left-pipette: - model: p300_multi_v2.1 - id: p300multi - right-pipette: - model: p20_single_v2.2 - id: p20single -modules: - - id: shakey-and-warm - hardware: heater-shaker-module - source-type: remote - source-location: latest - emulation_level: firmware - - id: t00-hot-to-handle - hardware: thermocycler-module - source-type: remote - source-location: latest - emulation_level: firmware - - id: fatal-attraction - hardware: magnetic-module - source-type: remote - source-location: latest - emulation_level: firmware - - id: temperamental - hardware: temperature-module - source-type: remote - source-location: latest - emulation_level: firmware - - id: maggy - hardware: magnetic-module - source-type: remote - source-location: latest - emulation_level: firmware diff --git a/app-testing/citools/Dockerfile b/app-testing/citools/Dockerfile new file mode 100644 index 00000000000..05b2ed538ff --- /dev/null +++ b/app-testing/citools/Dockerfile @@ -0,0 +1,26 @@ +# Use 3.10 just like the app does +FROM python:3.10-slim-bullseye + +# Update packages and install git +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y git libsystemd-dev + +# Define a build argument for the commit/tag/hash to clone +ARG OPENTRONS_VERSION=edge + +# Set the working directory in the container +WORKDIR /opentrons + +# Clone the Opentrons repository at the specified commit or tag +RUN git clone --branch $OPENTRONS_VERSION --depth 1 https://github.com/Opentrons/opentrons . + +# Install packages from local directories +RUN python -m pip install -U ./shared-data/python +RUN python -m pip install -U ./hardware[flex] +RUN python -m pip install -U ./api +RUN python -m pip install -U pandas==1.4.3 + +# The default command to run when starting the container +CMD ["tail", "-f", "/dev/null"] + diff --git a/app-testing/citools/__init__.py b/app-testing/citools/__init__.py new file mode 100644 index 00000000000..e11ed81c96c --- /dev/null +++ b/app-testing/citools/__init__.py @@ -0,0 +1 @@ +"""Package for all automation tools.""" diff --git a/app-testing/citools/generate_analyses.py b/app-testing/citools/generate_analyses.py new file mode 100644 index 00000000000..c8bccc9af45 --- /dev/null +++ b/app-testing/citools/generate_analyses.py @@ -0,0 +1,268 @@ +# docker build --build-arg OPENTRONS_VERSION=v7.0.2 -t opentrons-analysis:v7.0.2 . +# docker build --build-arg OPENTRONS_VERSION=v7.1.0-alpha.1 -t opentrons-analysis:v7.1.0-alpha.1 . +# docker build --build-arg OPENTRONS_VERSION=v7.1.0-alpha.2 -t opentrons-analysis:v7.1.0-alpha.2 . +# docker build --build-arg OPENTRONS_VERSION=v7.1.0-alpha.3 -t opentrons-analysis:v7.1.0-alpha.3 . + +# python -m pipenv run python citools/generate_analyses.py + +import json +import os +import time +from dataclasses import dataclass +from enum import Enum, auto +from pathlib import Path +from typing import Any, Dict, List + +import docker # type: ignore +from automation.data.protocol import Protocol +from rich import print +from rich.console import Console +from rich.panel import Panel +from rich.traceback import install + +install(show_locals=True) +IMAGE = "opentrons-analysis" +CONTAINER_LABWARE = "/var/lib/ot" +HOST_LABWARE = Path(Path(__file__).parent.parent, "files", "labware") +HOST_PROTOCOLS_ROOT = Path(Path(__file__).parent.parent, "files", "protocols") +CONTAINER_PROTOCOLS_ROOT = "/var/lib/ot/protocols" +CONTAINER_RESULTS = "/var/lib/ot/analysis_results" +HOST_RESULTS = Path(Path(__file__).parent.parent, "analysis_results") +ANALYSIS_SUFFIX = "analysis.json" + +console = Console() + + +class ProtocolType(Enum): + PROTOCOL_DESIGNER = auto() + PYTHON = auto() + + +@dataclass +class AnalyzeProtocol: + host_protocol_file: Path + container_protocol_file: Path + host_analysis_file: Path + container_analysis_file: Path + tag: str + analysis_execution_time: float | None = None + exit_code: int | None = None + output: str | None = None + analysis: Dict[str, Any] | None = None + + @property + def analysis_file_exists(self) -> bool: + return self.host_analysis_file.exists() + + def set_analysis(self) -> None: + if self.analysis_file_exists: + with open(self.host_analysis_file, "r") as file: + self.analysis = json.load(file) + + @property + def protocol_file_name(self) -> str: + return self.host_protocol_file.name + + @property + def protocol_type(self) -> str: + return (ProtocolType.PYTHON if self.host_protocol_file.suffix == ".py" else ProtocolType.PROTOCOL_DESIGNER).name.title() + + def set_analysis_execution_time(self, analysis_execution_time: float) -> None: + self.analysis_execution_time = analysis_execution_time + + +def run_container(image_name: str, timeout: int = 60) -> docker.models.containers.Container: + client = docker.from_env() + volumes = { + str(HOST_LABWARE): {"bind": CONTAINER_LABWARE, "mode": "rw"}, + str(HOST_RESULTS): {"bind": CONTAINER_RESULTS, "mode": "rw"}, + str(HOST_PROTOCOLS_ROOT): {"bind": CONTAINER_PROTOCOLS_ROOT, "mode": "rw"}, + } + + # Check for running containers using the specified image + containers = client.containers.list(filters={"ancestor": image_name, "status": "running"}) + + if containers: + print("Container already running.") + print("Exiting, stop this container so that you may be sure to have the right volumes attached.") + exit(1) + else: + # If no running container is found, start a new one with the specified volume + print("Starting a new container.") + container = client.containers.run(image_name, detach=True, volumes=volumes) + + # Wait for the container to be ready if a readiness command is provided + start_time = time.time() + while time.time() - start_time < timeout: + exit_code, output = container.exec_run(f"ls -al {CONTAINER_LABWARE}") + if exit_code == 0: + print("Container is ready.") + break + else: + print("Waiting for container to be ready...") + time.sleep(5) + else: + print("Timeout waiting for container to be ready. Proceeding anyway.") + return container + + +def stop_and_remove_containers(image_name: str) -> None: + client = docker.from_env() + + # Find all containers created from the specified image + containers = client.containers.list(all=True, filters={"ancestor": image_name}) + + for container in containers: + try: + # Stop the container if it's running + if container.status == "running": + print(f"Stopping container {container.short_id}...") + container.stop() + + # Remove the container + print(f"Removing container {container.short_id}...") + container.remove() + except docker.errors.ContainerError as e: + print(f"Error stopping/removing container {container.short_id}: {e}") + + +def has_designer_application(json_file_path: Path) -> bool: + try: + with open(json_file_path, "r", encoding="utf-8") as file: + data = json.load(file) + return "designerApplication" in data + except json.JSONDecodeError: + # Handle the exception if the file is not a valid JSON + print(f"Invalid JSON file: {json_file_path}") + return False + + +def host_analysis_path(protocol_file: Path, tag: str) -> Path: + return Path(HOST_RESULTS, f"{protocol_file.stem}_{tag}_{ANALYSIS_SUFFIX}") + + +def container_analysis_path(protocol_file: Path, tag: str) -> Path: + return Path(CONTAINER_RESULTS, f"{protocol_file.stem}_{tag}_{ANALYSIS_SUFFIX}") + + +def generate_protocols(tag: str) -> List[AnalyzeProtocol]: + def find_pd_protocols() -> List[AnalyzeProtocol]: + # Check if the provided path is a valid directory + if not HOST_PROTOCOLS_ROOT.is_dir(): + raise NotADirectoryError(f"The path {HOST_PROTOCOLS_ROOT} is not a valid directory.") + + # Recursively find all .json files + json_files = list(HOST_PROTOCOLS_ROOT.rglob("*.json")) + filtered_json_files = [file for file in json_files if has_designer_application(file)] + pd_protocols: List[AnalyzeProtocol] = [] + for path in filtered_json_files: + relative_path = path.relative_to(HOST_PROTOCOLS_ROOT) + updated_path = Path(CONTAINER_PROTOCOLS_ROOT, relative_path) + pd_protocols.append(AnalyzeProtocol(path, updated_path, host_analysis_path(path, tag), container_analysis_path(path, tag), tag)) + return pd_protocols + + def find_python_protocols() -> List[AnalyzeProtocol]: + # Check if the provided path is a valid directory + if not HOST_PROTOCOLS_ROOT.is_dir(): + raise NotADirectoryError(f"The path {HOST_PROTOCOLS_ROOT} is not a valid directory.") + + # Recursively find all .py files + python_files = list(HOST_PROTOCOLS_ROOT.rglob("*.py")) + py_protocols: List[AnalyzeProtocol] = [] + + for path in python_files: + relative_path = path.relative_to(HOST_PROTOCOLS_ROOT) + container_path = Path(CONTAINER_PROTOCOLS_ROOT, relative_path) + py_protocols.append( + AnalyzeProtocol(path, container_path, host_analysis_path(path, tag), container_analysis_path(path, tag), tag=tag) + ) + return py_protocols + + return find_pd_protocols() + find_python_protocols() + + +def remove_all_files_in_directory(directory: Path) -> None: + for filename in os.listdir(directory): + file_path = os.path.join(directory, filename) + try: + if os.path.isfile(file_path) or os.path.islink(file_path): + os.unlink(file_path) + elif os.path.isdir(file_path): + pass # Currently, subdirectories are not removed + except Exception as e: + print(f"Failed to delete {file_path}. Reason: {e}") + + +def report(protocol: AnalyzeProtocol) -> None: + panel = Panel( + f"[bold green]Output:[/bold green]\n{protocol.output}\n\n[bold red]Exit Code:[/bold red] {protocol.exit_code}", + title="[bold magenta]Command Result[/bold magenta]", + expand=False, + ) + console.print(panel) + if protocol.analysis_file_exists is True: + if protocol.analysis is not None and protocol.analysis["errors"] != []: + console.print(f"[bold red]Analysis has errors {protocol.protocol_file_name}[/bold red]") + console.print(protocol.analysis["errors"]) + console.print(protocol.output) + else: + console.print(f"[bold red]Analysis not created for {protocol.protocol_file_name}[/bold red]") + console.print(protocol.output) + + +def container_custom_labware_paths() -> List[str]: + if HOST_LABWARE.is_dir(): + return [os.path.join(CONTAINER_LABWARE, file) for file in os.listdir(HOST_LABWARE) if file.endswith(".json")] + return [] + + +def analyze(protocol: AnalyzeProtocol, container: docker.models.containers.Container) -> None: + # Run the analyze command + command = f"python -I -m opentrons.cli analyze --json-output {protocol.container_analysis_file} {protocol.container_protocol_file} {' '.join(map(str, container_custom_labware_paths()))}" # noqa: E501 + start_time = time.time() + exit_code, result = container.exec_run(command) # Assuming container is a defined object + protocol.output = result.decode("utf-8") + protocol.exit_code = exit_code + protocol.set_analysis() + protocol.set_analysis_execution_time(time.time() - start_time) + + +def analyze_many(protocol_files: List[AnalyzeProtocol], container: docker.models.containers.Container) -> None: + for file in protocol_files: + analyze(file, container) + accumulated_time = sum(protocol.analysis_execution_time for protocol in protocol_files if protocol.analysis_execution_time is not None) + console.print(f"{len(protocol_files)} protocols with total analysis time of {accumulated_time:.2f} seconds.\n") + + +def analyze_against_image(tag: str) -> List[AnalyzeProtocol]: + image_name = f"{IMAGE}:{tag}" + protocols = generate_protocols(tag) + protocols_to_process = protocols + # protocols_to_process = protocols[:1] # For testing + try: + console.print(f"Analyzing {len(protocols_to_process)} protocol(s) against {image_name}...") + container = run_container(image_name) + analyze_many(protocols_to_process, container) + finally: + stop_and_remove_containers(image_name) + return protocols_to_process + + +def generate_analyses_from_test(tag: str, protocols: List[Protocol]) -> None: + """Generate analyses from the tests.""" + image_name = f"{IMAGE}:{tag}" + protocols_to_process: List[AnalyzeProtocol] = [] + for protocol in protocols: + host_protocol_file = Path(protocol.file_path) + container_protocol_file = Path(CONTAINER_PROTOCOLS_ROOT, host_protocol_file.relative_to(HOST_PROTOCOLS_ROOT)) + host_analysis_file = host_analysis_path(host_protocol_file, tag) + container_analysis_file = container_analysis_path(host_protocol_file, tag) + protocols_to_process.append( + AnalyzeProtocol(host_protocol_file, container_protocol_file, host_analysis_file, container_analysis_file, tag) + ) + try: + console.print(f"Analyzing {len(protocols_to_process)} protocol(s) against {tag}...") + container = run_container(image_name) + analyze_many(protocols_to_process, container) + finally: + stop_and_remove_containers(image_name) diff --git a/app-testing/ci-tools/linux_get_chromedriver.sh b/app-testing/citools/linux_get_chromedriver.sh similarity index 100% rename from app-testing/ci-tools/linux_get_chromedriver.sh rename to app-testing/citools/linux_get_chromedriver.sh diff --git a/app-testing/ci-tools/mac_get_chromedriver.sh b/app-testing/citools/mac_get_chromedriver.sh similarity index 100% rename from app-testing/ci-tools/mac_get_chromedriver.sh rename to app-testing/citools/mac_get_chromedriver.sh diff --git a/app-testing/ci-tools/windows_get_chromedriver.ps1 b/app-testing/citools/windows_get_chromedriver.ps1 similarity index 100% rename from app-testing/ci-tools/windows_get_chromedriver.ps1 rename to app-testing/citools/windows_get_chromedriver.ps1 diff --git a/app-testing/conftest.py b/app-testing/conftest.py index afc55ea719e..1c2762fffd4 100644 --- a/app-testing/conftest.py +++ b/app-testing/conftest.py @@ -20,9 +20,14 @@ traceback.install(console=_console) -# Check to see if we have a dotenv file and use it +# My setting overrides to false we give preference to System Environment Variables +# This is important for CI if find_dotenv(): - load_dotenv(find_dotenv()) + load_dotenv(find_dotenv(), override=False) +elif find_dotenv(filename="example.env"): # example.env has our defaults + load_dotenv(find_dotenv(filename="example.env"), override=False) +else: + raise AssertionError("No .env or example.env file found.") def pytest_collection_modifyitems(items): # type: ignore # noqa: ANN201,ANN001 diff --git a/app-testing/example.env b/app-testing/example.env index d5a97f48962..a359f3d6770 100644 --- a/app-testing/example.env +++ b/app-testing/example.env @@ -11,46 +11,42 @@ SLOWMO=TrUe HIGHLIGHT_SECONDS=.3 # default is 2 UPDATE_CHANNEL="beta" # latest beta alpha LOCALHOST=false +# Analyses Snapshot test target +TARGET=edge # run all tests # possible values in \automation\data\protocol_files.py # dynamically generate with make print-protocols -# OT-2 Protocols -# APP_ANALYSIS_TEST_PROTOCOLS="OT2_P1000SLeft_None_6_1_SimpleTransfer, -# OT2_P20SRight_None_6_1_SimpleTransferError, -# OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error, -# OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid, -# OT2_P300M_P20S_HS_6_1_Smoke620release, -# OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error, -# OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40, -# OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error, -# OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids, -# OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer, -# OT2_P300SG1_None_5_2_6_Gen1PipetteSimple, -# OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps, -# OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError, -# OT2_None_None_2_13_PythonSyntaxError, -# OT2_P10S_P300M_TC1_TM_MM_2_11_Swift, -# OT2_P20S_None_2_7_Walkthrough, -# OT2_P300MLeft_MM_TM_2_4_Zymo, -# OT2_P300M_P20S_None_2_12_FailOnRun, -# OT2_P300M_P20S_TC_MM_TM_6_13_Smoke620Release, -# OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase, -# OT2_P300SLeft_MM1_MM_TM_2_3_Mix, -# OT2_P300S_Thermocycler_Moam_Error, -# OT2_P300S_Twinning_Error" -# Flex Protocols -APP_ANALYSIS_TEST_PROTOCOLS="OT3_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch, -OT3_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right, -OT3_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2, -OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4, -OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment, -OT3_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x, -OT3_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel, -OT3_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR, -OT3_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III, -OT3_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria" +APP_ANALYSIS_TEST_PROTOCOLS="Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp, Flex_None_None_2_16_AnalysisError_TrashBinInCol2, +Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3, Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4, +Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol, Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2, +Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3, Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4, +Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment, +Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4, +Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x, +Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right, Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash, +Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin, Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1, +Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures, +Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules, +Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures, Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke, +Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel, Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch, +Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III, +Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR, +Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict, Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria, +Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol, Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2, +OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError, OT2_None_None_2_13_PythonSyntaxError, +OT2_P1000SLeft_None_6_1_SimpleTransfer, OT2_P10S_P300M_TC1_TM_MM_2_11_Swift, OT2_P20SRight_None_6_1_SimpleTransferError, +OT2_P20S_None_2_7_Walkthrough, OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error, OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid, +OT2_P300MLeft_MM_TM_2_4_Zymo, OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume, OT2_P300M_P20S_HS_6_1_Smoke620release, +OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error, OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40, OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error, +OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids, OT2_P300M_P20S_None_2_12_FailOnRun, OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3, +OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3, OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3, OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3, +OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume, OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release, +OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer, OT2_P300SG1_None_5_2_6_Gen1PipetteSimple, +OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase, OT2_P300SLeft_MM1_MM_TM_2_3_Mix, OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps, +OT2_P300S_Thermocycler_Moam_Error, OT2_P300S_Twinning_Error" # run one -# APP_ANALYSIS_TEST_PROTOCOLS="OT2_P1000SLeft_None_6_1_SimpleTransfer" -FILES_FOLDER="files" \ No newline at end of file +# APP_ANALYSIS_TEST_PROTOCOLS="Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment" + +FILES_FOLDER="files" diff --git a/app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py b/app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py rename to app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py diff --git a/app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_TrashBinInCol2.py b/app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_TrashBinInCol2.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_TrashBinInCol2.py rename to app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_TrashBinInCol2.py diff --git a/app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3.py b/app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3.py rename to app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3.py diff --git a/app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py b/app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py rename to app-testing/files/protocols/py/Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py diff --git a/app-testing/files/protocols/py/OT3_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol.py b/app-testing/files/protocols/py/Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol.py rename to app-testing/files/protocols/py/Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol.py diff --git a/app-testing/files/protocols/py/OT3_None_None_TM_2_16_AnalysisError_ModuleInCol2.py b/app-testing/files/protocols/py/Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_TM_2_16_AnalysisError_ModuleInCol2.py rename to app-testing/files/protocols/py/Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2.py diff --git a/app-testing/files/protocols/py/OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3.py b/app-testing/files/protocols/py/Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3.py rename to app-testing/files/protocols/py/Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3.py diff --git a/app-testing/files/protocols/py/OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py b/app-testing/files/protocols/py/Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py similarity index 100% rename from app-testing/files/protocols/py/OT3_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py rename to app-testing/files/protocols/py/Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py diff --git a/app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py b/app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py similarity index 99% rename from app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py rename to app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py index beb6101bdee..e4b55c71752 100644 --- a/app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py +++ b/app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py @@ -340,7 +340,6 @@ def grip_offset(action, item, slot=None): protocol.comment("--> Repeating 3 washes") washreps = 3 for wash in range(washreps): - protocol.comment("--> Adding EEW") EEWVol = 200 p1000.pick_up_tip() diff --git a/app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py b/app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py similarity index 99% rename from app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py rename to app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py index 591a891ead3..92b7018f773 100644 --- a/app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py +++ b/app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py @@ -49,16 +49,13 @@ def run(protocol: protocol_api.ProtocolContext): - global p200_tips global p50_tips if ABR_TEST == True: protocol.comment("THIS IS A ABR RUN WITH " + str(RUN) + " REPEATS") protocol.comment("THIS IS A DRY RUN") if DRYRUN == True else protocol.comment("THIS IS A REACTION RUN") - protocol.comment("USED TIPS WILL GO IN TRASH") if TIP_TRASH == True else protocol.comment( - "USED TIPS WILL BE RE-RACKED" - ) + protocol.comment("USED TIPS WILL GO IN TRASH") if TIP_TRASH == True else protocol.comment("USED TIPS WILL BE RE-RACKED") # DECK SETUP AND LABWARE # ========== FIRST ROW =========== @@ -104,9 +101,7 @@ def run(protocol: protocol_api.ProtocolContext): EPM = reagent_plate.wells_by_name()["A7"] # pipette - p1000 = protocol.load_instrument( - "flex_8channel_1000", "left", tip_racks=[tiprack_200_1, tiprack_200_2, tiprack_200_3] - ) + p1000 = protocol.load_instrument("flex_8channel_1000", "left", tip_racks=[tiprack_200_1, tiprack_200_2, tiprack_200_3]) p50 = protocol.load_instrument("flex_8channel_50", "right", tip_racks=[tiprack_50_1, tiprack_50_2]) # tip and sample tracking @@ -443,7 +438,6 @@ def grip_offset(action, item, slot=None): washreps = 3 washcount = 0 for wash in range(washreps): - protocol.comment("--> Adding EEW") EEWVol = 200 for loop, X in enumerate(column_2_list): @@ -1007,7 +1001,6 @@ def grip_offset(action, item, slot=None): # Resetting TWB for X in range(COLUMNS): - p1000.aspirate(200, Liquid_trash_well_2.bottom(z=1)) p1000.dispense(200, EEW_1.bottom(z=1)) p1000.aspirate(200, Liquid_trash_well_2.bottom(z=1)) diff --git a/app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x.py b/app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x.py similarity index 100% rename from app-testing/files/protocols/py/OT3_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x.py rename to app-testing/files/protocols/py/Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x.py diff --git a/app-testing/files/protocols/py/OT3_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py b/app-testing/files/protocols/py/Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py similarity index 94% rename from app-testing/files/protocols/py/OT3_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py rename to app-testing/files/protocols/py/Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py index 6cd167bb6c0..3b8ebfa3b15 100644 --- a/app-testing/files/protocols/py/OT3_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py +++ b/app-testing/files/protocols/py/Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py @@ -22,7 +22,6 @@ def run(protocol: protocol_api.ProtocolContext): - if DRYRUN == "YES": protocol.comment("THIS IS A DRY RUN") else: @@ -173,9 +172,7 @@ def run(protocol: protocol_api.ProtocolContext): CurrentWell = str(data[current][1]) DyeVol = float(data[current][2]) if DyeVol != 0: - p1000.transfer( - DyeVol, Dye_1.bottom(z=2), sample_plate_1.wells_by_name()[CurrentWell].top(z=1), new_tip="never" - ) + p1000.transfer(DyeVol, Dye_1.bottom(z=2), sample_plate_1.wells_by_name()[CurrentWell].top(z=1), new_tip="never") current += 1 p1000.return_tip() @@ -204,9 +201,7 @@ def run(protocol: protocol_api.ProtocolContext): CurrentWell = str(data[current][1]) DyeVol = float(data[current][2]) if DyeVol != 0: - p1000.transfer( - DyeVol, Dye_2.bottom(z=2), sample_plate_2.wells_by_name()[CurrentWell].top(z=1), new_tip="never" - ) + p1000.transfer(DyeVol, Dye_2.bottom(z=2), sample_plate_2.wells_by_name()[CurrentWell].top(z=1), new_tip="never") current += 1 p1000.return_tip() @@ -235,9 +230,7 @@ def run(protocol: protocol_api.ProtocolContext): CurrentWell = str(data[current][1]) DyeVol = float(data[current][2]) if DyeVol != 0: - p1000.transfer( - DyeVol, Dye_3.bottom(z=2), sample_plate_3.wells_by_name()[CurrentWell].top(z=1), new_tip="never" - ) + p1000.transfer(DyeVol, Dye_3.bottom(z=2), sample_plate_3.wells_by_name()[CurrentWell].top(z=1), new_tip="never") current += 1 p1000.return_tip() diff --git a/app-testing/files/protocols/py/OT3_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py b/app-testing/files/protocols/py/Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py similarity index 99% rename from app-testing/files/protocols/py/OT3_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py rename to app-testing/files/protocols/py/Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py index b05ceee8976..7b43ce3be2a 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py @@ -12,7 +12,6 @@ def run(ctx: protocol_api.ProtocolContext) -> None: - ################ ### FIXTURES ### ################ diff --git a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin.py b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin.py similarity index 100% rename from app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin.py rename to app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin.py diff --git a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py similarity index 84% rename from app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py rename to app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py index 529f23becb6..e76c8179098 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py @@ -29,7 +29,6 @@ def default_well(tiprack: protocol_api.labware) -> protocol_api.labware.Well: def run(ctx: protocol_api.ProtocolContext) -> None: - ################ ### FIXTURES ### ################ @@ -60,14 +59,10 @@ def run(ctx: protocol_api.ProtocolContext) -> None: src_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "B2") dest_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "C2") - on_deck_tip_rack_1 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_1 = on_deck_tip_rack_1.parent - on_deck_tip_rack_2 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_2 = on_deck_tip_rack_2.parent off_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, protocol_api.OFF_DECK) @@ -110,15 +105,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ######################## pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(trash_bin_1) ################################## @@ -140,15 +131,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ############################# pipette_96_channel.pick_up_tip(default_well(staging_area_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) pipette_96_channel.pick_up_tip(default_well(staging_area_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(trash_bin_2) ################################## @@ -166,15 +153,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ctx.move_labware(off_deck_tip_rack_2, tip_rack_adapter_2, use_gripper=not USING_GRIPPER) pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) ############################ diff --git a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py similarity index 84% rename from app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py rename to app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py index 80450b34cd7..b29e6457338 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py @@ -28,7 +28,6 @@ def default_well(tiprack: protocol_api.labware) -> protocol_api.labware.Well: def run(ctx: protocol_api.ProtocolContext) -> None: - ############### ### MODULES ### ############### @@ -51,14 +50,10 @@ def run(ctx: protocol_api.ProtocolContext) -> None: src_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "B2") dest_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "C2") - on_deck_tip_rack_1 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_1 = on_deck_tip_rack_1.parent - on_deck_tip_rack_2 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_2 = on_deck_tip_rack_2.parent off_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, protocol_api.OFF_DECK) off_deck_tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, protocol_api.OFF_DECK) @@ -90,15 +85,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ######################## pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() ##################################### @@ -116,15 +107,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ctx.move_labware(off_deck_tip_rack_2, tip_rack_adapter_2, use_gripper=not USING_GRIPPER) pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() ############################ diff --git a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py similarity index 81% rename from app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py rename to app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py index 6b751f1d0e9..680ad37966b 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py @@ -28,7 +28,6 @@ def default_well(tiprack: protocol_api.labware) -> protocol_api.labware.Well: def run(ctx: protocol_api.ProtocolContext) -> None: - ################ ### FIXTURES ### ################ @@ -44,14 +43,10 @@ def run(ctx: protocol_api.ProtocolContext) -> None: src_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "B2") dest_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "C2") - on_deck_tip_rack_1 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_1 = on_deck_tip_rack_1.parent - on_deck_tip_rack_2 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_2 = on_deck_tip_rack_2.parent off_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, protocol_api.OFF_DECK) off_deck_tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, protocol_api.OFF_DECK) @@ -93,15 +88,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ######################## pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(trash_bin_1) ################################## @@ -123,15 +114,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ############################# pipette_96_channel.pick_up_tip(default_well(staging_area_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) pipette_96_channel.pick_up_tip(default_well(staging_area_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(trash_bin_2) ################################## @@ -149,15 +136,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ctx.move_labware(off_deck_tip_rack_2, tip_rack_adapter_2, use_gripper=not USING_GRIPPER) pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.drop_tip(waste_chute) ########################################## diff --git a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py similarity index 81% rename from app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py rename to app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py index b809f034447..165d532d5a4 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py @@ -28,7 +28,6 @@ def default_well(tiprack: protocol_api.labware) -> protocol_api.labware.Well: def run(ctx: protocol_api.ProtocolContext) -> None: - ############### ### LABWARE ### ############### @@ -36,14 +35,10 @@ def run(ctx: protocol_api.ProtocolContext) -> None: src_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "B2") dest_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "C2") - on_deck_tip_rack_1 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_1, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_1 = on_deck_tip_rack_1.parent - on_deck_tip_rack_2 = ctx.load_labware( - TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter" - ) + on_deck_tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, TIP_RACK_LOCATION_2, adapter="opentrons_flex_96_tiprack_adapter") tip_rack_adapter_2 = on_deck_tip_rack_2.parent off_deck_tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, protocol_api.OFF_DECK) off_deck_tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, protocol_api.OFF_DECK) @@ -75,15 +70,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ######################## pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() pipette_96_channel.pick_up_tip(default_well(on_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() ##################################### @@ -101,15 +92,11 @@ def run(ctx: protocol_api.ProtocolContext) -> None: ctx.move_labware(off_deck_tip_rack_2, tip_rack_adapter_2, use_gripper=not USING_GRIPPER) pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_1)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() pipette_96_channel.pick_up_tip(default_well(off_deck_tip_rack_2)) - pipette_96_channel.transfer( - TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never" - ) + pipette_96_channel.transfer(TRANSFER_VOL, default_well(src_pcr_plate), default_well(dest_pcr_plate), new_tip="never") pipette_96_channel.return_tip() ########################################## diff --git a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py similarity index 99% rename from app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py rename to app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py index 932fba22f31..2caabd69fb2 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py @@ -40,7 +40,6 @@ def run(ctx: protocol_api.ProtocolContext) -> None: - ################ ### FIXTURES ### ################ diff --git a/app-testing/files/protocols/py/OT3_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py b/app-testing/files/protocols/py/Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py similarity index 99% rename from app-testing/files/protocols/py/OT3_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py rename to app-testing/files/protocols/py/Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py index dfdcd4587be..1d36403234e 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py @@ -430,9 +430,7 @@ def grip_offset(action, item, slot=None): drop_offset=grip_offset("drop", "mag-plate"), ) - ctx.delay( - minutes=settling_time, msg="Please wait " + str(settling_time) + " minute(s) for beads to pellet." - ) + ctx.delay(minutes=settling_time, msg="Please wait " + str(settling_time) + " minute(s) for beads to pellet.") # Remove Supernatant and move off magnet ctx.comment("------- Removing Supernatant -------") diff --git a/app-testing/files/protocols/py/OT3_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py b/app-testing/files/protocols/py/Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py similarity index 97% rename from app-testing/files/protocols/py/OT3_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py rename to app-testing/files/protocols/py/Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py index 0be6b796136..498aa01d627 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py @@ -292,9 +292,7 @@ def lysis(vol, source): pip.return_tip() h_s.set_and_wait_for_shake_speed(rpm=2200) - ctx.delay( - minutes=1 if not dry_run else 0.25, msg="Please wait 1 minute while the lysis buffer mixes with the sample." - ) + ctx.delay(minutes=1 if not dry_run else 0.25, msg="Please wait 1 minute while the lysis buffer mixes with the sample.") h_s.deactivate_shaker() def bind(): @@ -356,9 +354,7 @@ def bind(): ) # Incubate for beads to bind DNA - ctx.delay( - minutes=5 if not dry_run else 0.25, msg="Please wait 5 minutes while the sample binds with the beads." - ) + ctx.delay(minutes=5 if not dry_run else 0.25, msg="Please wait 5 minutes while the sample binds with the beads.") h_s.deactivate_shaker() # Transfer plate to magnet @@ -379,7 +375,6 @@ def bind(): remove_supernatant(175, lysis_res) def wash(vol, source, waste): - global whichwash # Defines which wash the protocol is on to log on the app """ if source == wash1: @@ -415,9 +410,7 @@ def wash(vol, source, waste): h_s.close_labware_latch() for washi in np.arange(settling_time, 0, -0.5): # settling time timer for washes - ctx.delay( - minutes=0.5, msg="There are " + str(washi) + " minutes left in wash " + str(whichwash) + " incubation." - ) + ctx.delay(minutes=0.5, msg="There are " + str(washi) + " minutes left in wash " + str(whichwash) + " incubation.") remove_supernatant(vol, lysis_res) @@ -441,7 +434,6 @@ def dnase(vol, source): pip.flow_rate.dispense = 150 def stop_reaction(vol, source): - pip.pick_up_tip(tips) pip.aspirate(vol, source) pip.dispense(vol, samples_m) diff --git a/app-testing/files/protocols/py/OT3_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III.py b/app-testing/files/protocols/py/Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III.py similarity index 100% rename from app-testing/files/protocols/py/OT3_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III.py rename to app-testing/files/protocols/py/Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III.py diff --git a/app-testing/files/protocols/py/OT3_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py b/app-testing/files/protocols/py/Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py similarity index 99% rename from app-testing/files/protocols/py/OT3_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py rename to app-testing/files/protocols/py/Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py index 3c572c62f24..09c9797d3be 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py @@ -38,11 +38,8 @@ def run(protocol: protocol_api.ProtocolContext): - protocol.comment("THIS IS A DRY RUN") if DRYRUN == True else protocol.comment("THIS IS A REACTION RUN") - protocol.comment("USED TIPS WILL GO IN TRASH") if TIP_TRASH == True else protocol.comment( - "USED TIPS WILL BE RE-RACKED" - ) + protocol.comment("USED TIPS WILL GO IN TRASH") if TIP_TRASH == True else protocol.comment("USED TIPS WILL BE RE-RACKED") # DECK SETUP AND LABWARE # ========== FIRST ROW =========== diff --git a/app-testing/files/protocols/py/OT3_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py b/app-testing/files/protocols/py/Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py similarity index 99% rename from app-testing/files/protocols/py/OT3_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py rename to app-testing/files/protocols/py/Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py index 0c5fb7cd509..8868e4d49f9 100644 --- a/app-testing/files/protocols/py/OT3_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py +++ b/app-testing/files/protocols/py/Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py @@ -12,7 +12,6 @@ def run(ctx: protocol_api.ProtocolContext) -> None: - ctx.load_waste_chute() tip_rack = ctx.load_labware("opentrons_flex_96_tiprack_1000ul", "A1", adapter="opentrons_flex_96_tiprack_adapter") diff --git a/app-testing/files/protocols/py/OT3_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py b/app-testing/files/protocols/py/Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py similarity index 96% rename from app-testing/files/protocols/py/OT3_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py rename to app-testing/files/protocols/py/Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py index c3df5669932..9600944a1a6 100644 --- a/app-testing/files/protocols/py/OT3_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py +++ b/app-testing/files/protocols/py/Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py @@ -67,9 +67,7 @@ def run(ctx): elutionplate = tempdeck.load_labware("opentrons_96_pcr_adapter_armadillo_wellplate_200ul") # Load Reservoir Plates - wash2_reservoir = lysis_reservoir = ctx.load_labware( - deepwell_type, "2" - ) # deleted after use- replaced (by gripper) with wash2 res + wash2_reservoir = lysis_reservoir = ctx.load_labware(deepwell_type, "2") # deleted after use- replaced (by gripper) with wash2 res bind_reservoir = ctx.load_labware(deepwell_type, "6") wash1_reservoir = ctx.load_labware(deepwell_type, "5") wash3_reservoir = wash4_reservoir = wash5_reservoir = ctx.load_labware(deepwell_type, "7") @@ -331,9 +329,7 @@ def bind(vol, source): pip.return_tip() h_s.set_and_wait_for_shake_speed(rpm=1800) - ctx.delay( - minutes=20 if not dry_run else 0.25, msg="Please wait 20 minutes while the sample binds with the beads." - ) + ctx.delay(minutes=20 if not dry_run else 0.25, msg="Please wait 20 minutes while the sample binds with the beads.") h_s.deactivate_shaker() h_s.open_labware_latch() @@ -354,7 +350,6 @@ def bind(vol, source): remove_supernatant(vol + starting_vol, bind_res) def wash(vol, source): - global whichwash # Defines which wash the protocol is on to log on the app if source == wash1: @@ -395,9 +390,7 @@ def wash(vol, source): h_s.close_labware_latch() for washi in np.arange(settling_time, 0, -0.5): # settling time timer for washes - ctx.delay( - minutes=0.5, msg="There are " + str(washi) + " minutes left in wash " + str(whichwash) + " incubation." - ) + ctx.delay(minutes=0.5, msg="There are " + str(washi) + " minutes left in wash " + str(whichwash) + " incubation.") remove_supernatant(vol, waste_res) @@ -416,7 +409,6 @@ def dnase(vol, source): h_s.deactivate_shaker() def stop_reaction(vol, source): - pip.pick_up_tip(tips) pip.aspirate(vol, source) pip.dispense(vol, samples_m) @@ -459,9 +451,7 @@ def elute(vol, source): h_s.set_and_wait_for_shake_speed(rpm=2000) if not dry_run: tempdeck.set_temperature(4) - ctx.delay( - minutes=3 if not dry_run else 0.25, msg="Please wait 5 minutes while the sample elutes from the beads." - ) + ctx.delay(minutes=3 if not dry_run else 0.25, msg="Please wait 5 minutes while the sample elutes from the beads.") h_s.deactivate_shaker() h_s.open_labware_latch() diff --git a/app-testing/files/protocols/py/OT3_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol.py b/app-testing/files/protocols/py/Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol.py similarity index 100% rename from app-testing/files/protocols/py/OT3_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol.py rename to app-testing/files/protocols/py/Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol.py diff --git a/app-testing/files/protocols/py/OT3_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py b/app-testing/files/protocols/py/Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py similarity index 87% rename from app-testing/files/protocols/py/OT3_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py rename to app-testing/files/protocols/py/Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py index f22de72e0b0..c08906b2297 100644 --- a/app-testing/files/protocols/py/OT3_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py +++ b/app-testing/files/protocols/py/Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py @@ -49,7 +49,6 @@ def right(s, amount): def run(protocol: protocol_api.ProtocolContext): - if DRYRUN == "YES": protocol.comment("THIS IS A DRY RUN") else: @@ -77,12 +76,8 @@ def run(protocol: protocol_api.ProtocolContext): "nest_96_wellplate_100ul_pcr_full_skirt", "10" ) # <--- Actually an Eppendorf 96 well, same dimensions if FORMAT == "384": - qpcrplate_1 = protocol.load_labware( - "corning_384_wellplate_112ul_flat", "9" - ) # <--- Actually an Eppendorf 96 well, same dimensions - qpcrplate_2 = protocol.load_labware( - "corning_384_wellplate_112ul_flat", "10" - ) # <--- Actually an Eppendorf 96 well, same dimensions + qpcrplate_1 = protocol.load_labware("corning_384_wellplate_112ul_flat", "9") # <--- Actually an Eppendorf 96 well, same dimensions + qpcrplate_2 = protocol.load_labware("corning_384_wellplate_112ul_flat", "10") # <--- Actually an Eppendorf 96 well, same dimensions # REAGENT PLATE STD_1 = reagent_plate["A1"] @@ -136,9 +131,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.comment("--> Dispensing Diluent Part 1 and Part 2") protocol.comment("==============================================") p1000.pick_up_tip() - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A2" Y = "A6" p1000.move_to(DIL.bottom(z=p1000_offset_Res)) @@ -158,9 +151,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.default_speed = 400 p1000.move_to(DIL.top()) p1000.blow_out() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A3" Y = "A7" p1000.move_to(DIL.bottom(z=p1000_offset_Res)) @@ -180,9 +171,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.default_speed = 400 p1000.move_to(DIL.top()) p1000.blow_out() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A4" Y = "A8" p1000.move_to(DIL.bottom(z=p1000_offset_Res)) @@ -207,27 +196,21 @@ def run(protocol: protocol_api.ProtocolContext): protocol.comment("==============================================") protocol.comment("--> Adding Sample to Diluent Part 1") protocol.comment("==============================================") - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = INICOLUMN1 Y = "A2" p50.pick_up_tip() p50.aspirate(2, source_plate[X].bottom(z=p50_offset_Mag), rate=0.25) p50.dispense(2, dilution_plate_1[Y].center(), rate=0.5) p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = INICOLUMN2 Y = "A3" p50.pick_up_tip() p50.aspirate(2, source_plate[X].bottom(z=p50_offset_Mag), rate=0.25) p50.dispense(2, dilution_plate_1[Y].center(), rate=0.5) p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = INICOLUMN3 Y = "A4" p50.pick_up_tip() @@ -236,9 +219,7 @@ def run(protocol: protocol_api.ProtocolContext): p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() protocol.comment("--> Mixing") - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A2" p1000.pick_up_tip() p1000.move_to(dilution_plate_1[X].bottom(z=p1000_offset_Temp)) @@ -248,9 +229,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p1000.default_speed = 400 p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A3" p1000.pick_up_tip() p1000.move_to(dilution_plate_1[X].bottom(z=p1000_offset_Temp)) @@ -261,9 +240,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p1000.default_speed = 400 p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A4" p1000.pick_up_tip() p1000.move_to(dilution_plate_1[X].bottom(z=p1000_offset_Temp)) @@ -277,27 +254,21 @@ def run(protocol: protocol_api.ProtocolContext): protocol.comment("==============================================") protocol.comment("--> Adding Diluted Sample to Diluent Part 2") protocol.comment("==============================================") - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A2" Y = "A6" p50.pick_up_tip() p50.aspirate(5, dilution_plate_1[X].center(), rate=0.5) p50.dispense(5, dilution_plate_1[Y].center(), rate=0.5) p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A3" Y = "A7" p50.pick_up_tip() p50.aspirate(5, dilution_plate_1[X].center(), rate=0.5) p50.dispense(5, dilution_plate_1[Y].center(), rate=0.5) p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A4" Y = "A8" p50.pick_up_tip() @@ -306,9 +277,7 @@ def run(protocol: protocol_api.ProtocolContext): p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() protocol.comment("--> Mixing") - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A6" p1000.pick_up_tip() p1000.move_to(dilution_plate_1[X].bottom(z=p1000_offset_Temp)) @@ -318,9 +287,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p1000.default_speed = 400 p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A7" p1000.pick_up_tip() p1000.move_to(dilution_plate_1[X].bottom(z=p1000_offset_Temp)) @@ -330,9 +297,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p1000.default_speed = 400 p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A8" p1000.pick_up_tip() p1000.move_to(dilution_plate_1[X].bottom(z=p1000_offset_Temp)) @@ -352,21 +317,15 @@ def run(protocol: protocol_api.ProtocolContext): p1000.pick_up_tip() p1000.aspirate((qPCRVol), PCR_1.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_1["A9"].bottom(z=p1000_offset_Temp), rate=0.25) - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A10" p1000.aspirate((qPCRVol), PCR_1.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_1[X].bottom(z=p1000_offset_Temp), rate=0.25) - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A11" p1000.aspirate((qPCRVol), PCR_1.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_1[X].bottom(z=p1000_offset_Temp), rate=0.25) - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A12" p1000.aspirate((qPCRVol), PCR_1.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_1[X].bottom(z=p1000_offset_Temp), rate=0.25) @@ -375,21 +334,15 @@ def run(protocol: protocol_api.ProtocolContext): p1000.pick_up_tip() p1000.aspirate((qPCRVol), PCR_2.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_2["A9"].bottom(z=p1000_offset_Deck), rate=0.25) - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A10" p1000.aspirate((qPCRVol), PCR_2.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_2[X].bottom(z=p1000_offset_Deck), rate=0.25) - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A11" p1000.aspirate((qPCRVol), PCR_2.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_2[X].bottom(z=p1000_offset_Deck), rate=0.25) - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A12" p1000.aspirate((qPCRVol), PCR_2.bottom(z=p1000_offset_Thermo), rate=0.25) p1000.dispense(qPCRVol, dilution_plate_2[X].bottom(z=p1000_offset_Deck), rate=0.25) @@ -420,9 +373,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.comment("==============================================") protocol.comment("--> Adding Diluted Sample to Mix") protocol.comment("==============================================") - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A6" Y = "A10" p50.pick_up_tip() @@ -433,9 +384,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p50.default_speed = 400 p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A7" Y = "A11" p50.pick_up_tip() @@ -446,9 +395,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p50.default_speed = 400 p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A8" Y = "A12" p50.pick_up_tip() @@ -460,9 +407,7 @@ def run(protocol: protocol_api.ProtocolContext): p50.default_speed = 400 p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A6" Y = "A10" p50.pick_up_tip() @@ -473,9 +418,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p50.default_speed = 400 p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A7" Y = "A11" p50.pick_up_tip() @@ -486,9 +429,7 @@ def run(protocol: protocol_api.ProtocolContext): protocol.delay(seconds=2) p50.default_speed = 400 p50.drop_tip() if DRYRUN == "NO" else p50.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A8" Y = "A12" p50.pick_up_tip() @@ -515,9 +456,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.dispense(20, qpcrplate_1[Y2].bottom(z=p1000_offset_Mag), rate=0.5) p1000.dispense(20, qpcrplate_1[Y3].bottom(z=p1000_offset_Mag), rate=0.5) p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A10" Y1 = "A4" Y2 = "A5" @@ -528,9 +467,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.dispense(20, qpcrplate_1[Y2].bottom(z=p1000_offset_Mag), rate=0.5) p1000.dispense(20, qpcrplate_1[Y3].bottom(z=p1000_offset_Mag), rate=0.5) p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A11" Y1 = "A7" Y2 = "A8" @@ -541,9 +478,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.dispense(20, qpcrplate_1[Y2].bottom(z=p1000_offset_Mag), rate=0.5) p1000.dispense(20, qpcrplate_1[Y3].bottom(z=p1000_offset_Mag), rate=0.5) p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A12" Y1 = "A10" Y2 = "A11" @@ -555,7 +490,6 @@ def run(protocol: protocol_api.ProtocolContext): p1000.dispense(20, qpcrplate_1[Y3].bottom(z=p1000_offset_Mag), rate=0.5) p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() if FORMAT == "384": - p1000.reset_tipracks() p50.reset_tipracks() @@ -613,9 +547,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.default_speed = 400 p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A10" Y1 = "B1" Y2 = "B2" @@ -668,9 +600,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A11" Y1 = "A7" Y2 = "A8" @@ -723,9 +653,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A12" Y1 = "B7" Y2 = "B8" @@ -829,9 +757,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.default_speed = 400 p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 1 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 1: # ----------------------------------------------------------------------------------------- X = "A10" Y1 = "B1" Y2 = "B2" @@ -884,9 +810,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 2 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 2: # ----------------------------------------------------------------------------------------- X = "A11" Y1 = "A7" Y2 = "A8" @@ -939,9 +863,7 @@ def run(protocol: protocol_api.ProtocolContext): p1000.drop_tip() if DRYRUN == "NO" else p1000.return_tip() - if ( - samplecolumns >= 3 - ): # ----------------------------------------------------------------------------------------- + if samplecolumns >= 3: # ----------------------------------------------------------------------------------------- X = "A12" Y1 = "B7" Y2 = "B8" diff --git a/app-testing/files/protocols/py/OT2_P20S_None_2_7_Walkthrough.py b/app-testing/files/protocols/py/OT2_P20S_None_2_7_Walkthrough.py index 5ee3763af99..68718efe2e9 100644 --- a/app-testing/files/protocols/py/OT2_P20S_None_2_7_Walkthrough.py +++ b/app-testing/files/protocols/py/OT2_P20S_None_2_7_Walkthrough.py @@ -18,10 +18,7 @@ def get_values(*names): def run(ctx): - - [well_plate, pipette, tips, pipette_mount] = get_values( # noqa: F821 - "well_plate", "pipette", "tips", "pipette_mount" - ) + [well_plate, pipette, tips, pipette_mount] = get_values("well_plate", "pipette", "tips", "pipette_mount") # noqa: F821 # load labware plate = ctx.load_labware(well_plate, "1") diff --git a/app-testing/files/protocols/py/OT2_P300MLeft_MM_TM_2_4_Zymo.py b/app-testing/files/protocols/py/OT2_P300MLeft_MM_TM_2_4_Zymo.py index bce761ac09a..2ea6ae793d0 100644 --- a/app-testing/files/protocols/py/OT2_P300MLeft_MM_TM_2_4_Zymo.py +++ b/app-testing/files/protocols/py/OT2_P300MLeft_MM_TM_2_4_Zymo.py @@ -108,10 +108,7 @@ def run(ctx): res2 = ctx.load_labware(res_type, "3", "reagent reservoir 2") res1 = ctx.load_labware(res_type, "2", "reagent reservoir 1") num_cols = math.ceil(num_samples / 8) - tips300 = [ - ctx.load_labware("opentrons_96_tiprack_300ul", slot, "200µl filtertiprack") - for slot in ["5", "7", "8", "10", "11"] - ] + tips300 = [ctx.load_labware("opentrons_96_tiprack_300ul", slot, "200µl filtertiprack") for slot in ["5", "7", "8", "10", "11"]] if park_tips: parkingrack = ctx.load_labware("opentrons_96_tiprack_20ul", "4", "tiprack for parking") parking_spots = parkingrack.rows()[0][:num_cols] @@ -433,7 +430,6 @@ def wash(vol, source, mix_reps=15, park=True, resuspend=True): remove_supernatant(vol, park=park) def dnase(vol, source, mix_reps=6, park=True, resuspend=True): - if resuspend and magdeck.status == "engaged": magdeck.disengage() @@ -463,7 +459,6 @@ def dnase(vol, source, mix_reps=6, park=True, resuspend=True): ctx.pause("Incubating for 10 minutes for DNase 1 treatment with occasional mixing.") def stop_reaction(vol, source, mix_reps=6, park=True, resuspend=True): - if resuspend and magdeck.status == "engaged": magdeck.disengage() diff --git a/app-testing/files/protocols/py/OT2_P300S_Twinning_Error.py b/app-testing/files/protocols/py/OT2_P300S_Twinning_Error.py index 497313c66ad..a3f7a3414fa 100644 --- a/app-testing/files/protocols/py/OT2_P300S_Twinning_Error.py +++ b/app-testing/files/protocols/py/OT2_P300S_Twinning_Error.py @@ -8,7 +8,6 @@ def run(ctx): - tiprack = ctx.load_labware("opentrons_96_tiprack_300ul", 1) labware = ctx.load_labware("usascientific_12_reservoir_22ml", 2) other_labware = ctx.load_labware("corning_96_wellplate_360ul_flat", 3) diff --git a/app-testing/print_protocols.py b/app-testing/print_protocols.py index eb5bc7bc366..e064f44d883 100644 --- a/app-testing/print_protocols.py +++ b/app-testing/print_protocols.py @@ -6,16 +6,17 @@ from rich.panel import Panel stems = [p.stem for p in pathlib.Path(pathlib.Path.cwd(), "files", "protocols").rglob("*") if p.is_file()] +sorted_stems = sorted(stems) rich.print(Panel("For protocol_files.names")) -rich.print(stems) +rich.print(sorted_stems) rich.print(Panel("Formatted for .env")) -rich.print(", ".join(stems)) +rich.print(", ".join(sorted_stems)) rich.print(Panel("What are actually defined?")) protocols = Protocols() props = [prop for prop in dir(protocols) if "__" not in prop] rich.print(",\n".join(props)) -possible = set(stems) +possible = set(sorted_stems) actual = set(props) missing_protocols = possible - actual orphan_protocols = actual - possible diff --git a/app-testing/pyproject.toml b/app-testing/pyproject.toml index 74380c51b22..273fc00740d 100644 --- a/app-testing/pyproject.toml +++ b/app-testing/pyproject.toml @@ -1,10 +1,10 @@ [tool.black] -line-length = 120 -target-version = ['py311'] +line-length = 140 +target-version = ['py312'] [tool.ruff] -line-length = 120 -target-version = "py311" +line-length = 140 +target-version = "py312" exclude = ["files"] src = ["*.py", "automation", "tests"] select = [ @@ -28,6 +28,7 @@ disallow_any_generics = true check_untyped_defs = true no_implicit_reexport = true exclude = "__init__.py" +python_version = "3.12" [mypy-selenium] ignore_missing_imports = true diff --git a/app-testing/pytest.ini b/app-testing/pytest.ini index b43796a2150..5bdb3486d34 100644 --- a/app-testing/pytest.ini +++ b/app-testing/pytest.ini @@ -1,3 +1,4 @@ [pytest] +generate_report_on_test = True junit_family = legacy -addopts = -s --junitxml=results/results.xml --log-cli-level info --strict-markers +addopts = --junitxml=results/results.xml --log-cli-level info --html=results/report.html --self-contained-html diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp][Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp][Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp].json new file mode 100644 index 00000000000..a21a9ba6a78 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp][Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp].json @@ -0,0 +1,73 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "APIVersionError [line 15]: Fixed Trash is not supported on Flex protocols in API Version 2.16 and above.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocols.api_support.util.APIVersionError: Fixed Trash is not supported on Flex protocols in API Version 2.16 and above.", + "errorCode": "4000", + "errorInfo": { + "args": "('Fixed Trash is not supported on Flex protocols in API Version 2.16 and above.',)", + "class": "APIVersionError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 1071, in fixed_trash\n raise APIVersionError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_None_None_2_16_AnalysisError_AccessToFixedTrashProp.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Access to Fixed Trash Property" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInCol2][Flex_None_None_2_16_AnalysisError_TrashBinInCol2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInCol2][Flex_None_None_2_16_AnalysisError_TrashBinInCol2].json new file mode 100644 index 00000000000..1f06f8b9bd6 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInCol2][Flex_None_None_2_16_AnalysisError_TrashBinInCol2].json @@ -0,0 +1,73 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "InvalidTrashBinLocationError [line 15]: Invalid location for trash bin: C2.\nValid slots: Any slot in column 1 or 3.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.protocol_api.validation.InvalidTrashBinLocationError: Invalid location for trash bin: C2.\nValid slots: Any slot in column 1 or 3.", + "errorCode": "4000", + "errorInfo": { + "args": "('Invalid location for trash bin: C2.\\nValid slots: Any slot in column 1 or 3.',)", + "class": "InvalidTrashBinLocationError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_2_16_AnalysisError_TrashBinInCol2.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 484, in load_trash_bin\n addressable_area_name = validation.ensure_and_convert_trash_bin_location(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/validation.py\", line 328, in ensure_and_convert_trash_bin_location\n raise InvalidTrashBinLocationError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_None_None_2_16_AnalysisError_TrashBinInCol2.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Trash Bin in Column 2" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3].json new file mode 100644 index 00000000000..fb1c316c43e --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3].json @@ -0,0 +1,147 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_1_reservoir_290ml", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360206", + "360266" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.55, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 106.8, + "y": 42.74, + "yDimension": 71.2, + "z": 4.85 + } + } + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol3.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/nest_1_reservoir_290ml/1", + "loadName": "nest_1_reservoir_290ml", + "location": { + "addressableAreaName": "C4" + } + } + ], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Trash Bin in Staging Area Column 3" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4].json new file mode 100644 index 00000000000..edfb140e8ed --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4][Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4].json @@ -0,0 +1,73 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ValueError [line 15]: Staging areas not permitted for trash bin.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "ValueError: Staging areas not permitted for trash bin.", + "errorCode": "4000", + "errorInfo": { + "args": "('Staging areas not permitted for trash bin.',)", + "class": "ValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 483, in load_trash_bin\n raise ValueError(\"Staging areas not permitted for trash bin.\")\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_None_None_2_16_AnalysisError_TrashBinInStagingAreaCol4.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Trash Bin in Staging Area Column 4" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol][Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol][Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol].json new file mode 100644 index 00000000000..a0274a96f5d --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol][Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol].json @@ -0,0 +1,73 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ValueError [line 15]: A magneticModuleType cannot be loaded into slot C1", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "ValueError: A magneticModuleType cannot be loaded into slot C1", + "errorCode": "4000", + "errorInfo": { + "args": "('A magneticModuleType cannot be loaded into slot C1',)", + "class": "ValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 779, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 379, in load_module\n self._ensure_module_location(normalized_deck_slot, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 552, in _ensure_module_location\n raise ValueError(f\"A {module_type.value} cannot be loaded into slot {slot}\")\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_None_None_MM_2_16_AnalysisError_MagneticModuleInFlexProtocol.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Magnetic Module in Flex Protocol" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2][Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2][Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2].json new file mode 100644 index 00000000000..0776eef030a --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2][Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2].json @@ -0,0 +1,73 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ValueError [line 15]: A temperatureModuleType cannot be loaded into slot C2", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "ValueError: A temperatureModuleType cannot be loaded into slot C2", + "errorCode": "4000", + "errorInfo": { + "args": "('A temperatureModuleType cannot be loaded into slot C2',)", + "class": "ValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 779, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 379, in load_module\n self._ensure_module_location(normalized_deck_slot, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/engine/protocol.py\", line 552, in _ensure_module_location\n raise ValueError(f\"A {module_type.value} cannot be loaded into slot {slot}\")\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_None_None_TM_2_16_AnalysisError_ModuleInCol2.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Module in Column 2" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3].json new file mode 100644 index 00000000000..5cee447620f --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3].json @@ -0,0 +1,611 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_1_reservoir_290ml", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360206", + "360266" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.55, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 106.8, + "y": 42.74, + "yDimension": 71.2, + "z": 4.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/deactivate", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol3.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/nest_1_reservoir_290ml/1", + "loadName": "nest_1_reservoir_290ml", + "location": { + "addressableAreaName": "C4" + } + } + ], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Module in Staging Area Column 3" + }, + "modules": [ + { + "location": { + "slotName": "C3" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4].json new file mode 100644 index 00000000000..d69bcec641e --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4][Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4].json @@ -0,0 +1,73 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ValueError [line 15]: Cannot load a module onto a staging slot.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "ValueError: Cannot load a module onto a staging slot.", + "errorCode": "4000", + "errorInfo": { + "args": "('Cannot load a module onto a staging slot.',)", + "class": "ValueError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py\", line 15, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 777, in load_module\n raise ValueError(\"Cannot load a module onto a staging slot.\")\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_None_None_TM_2_16_AnalysisError_ModuleInStagingAreaCol4.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Module in Staging Area Column 4" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment].json new file mode 100644 index 00000000000..6ca8800e934 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment].json @@ -0,0 +1,10145 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A DRY RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p50_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Ready" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Quick Vol Pool", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Capture", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding NHB2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Panel", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding EHB2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Hybridize on Deck", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Heating EEW", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 121.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.75 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 3.25 + }, + "volume": 121.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "error": { + "detail": "Cannot dispense 125.0 µL when only 121.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidDispenseVolumeError", + "wrappedErrors": [] + }, + "params": { + "flowRate": 160.0, + "volume": 125.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "status": "failed" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ProtocolCommandFailedError [line 248]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): InvalidDispenseVolumeError: Cannot dispense 125.0 µL when only 121.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "InvalidDispenseVolumeError: Cannot dispense 125.0 µL when only 121.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ProtocolCommandFailedError", + "wrappedErrors": [ + { + "detail": "Cannot dispense 125.0 µL when only 121.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidDispenseVolumeError", + "wrappedErrors": [] + } + ] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "protocolName": "Illumina DNA Enrichment", + "source": "Protocol Library" + }, + "modules": [ + { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_multi_flex" + }, + { + "mount": "right", + "pipetteName": "p50_multi_flex" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4].json new file mode 100644 index 00000000000..7c2da2c4842 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4][Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4].json @@ -0,0 +1,12000 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A ABR RUN WITH 3 REPEATS", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A DRY RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "USED TIPS WILL BE RE-RACKED", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p50_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Ready" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Capture", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Transfer Hybridization", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.53 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.329999999999993 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 101.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.53 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.329999999999993 + }, + "volume": 101.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "error": { + "detail": "Cannot dispense 105.0 µL when only 101.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidDispenseVolumeError", + "wrappedErrors": [] + }, + "params": { + "flowRate": 160.0, + "volume": 105.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "status": "failed" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ProtocolCommandFailedError [line 338]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): InvalidDispenseVolumeError: Cannot dispense 105.0 µL when only 101.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "InvalidDispenseVolumeError: Cannot dispense 105.0 µL when only 101.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ProtocolCommandFailedError", + "wrappedErrors": [ + { + "detail": "Cannot dispense 105.0 µL when only 101.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidDispenseVolumeError", + "wrappedErrors": [] + } + ] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000MLeft_P50MRight_HS_MM_TC_TM_2_15_ABR3_Illumina_DNA_Enrichment_v4.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "protocolName": "Illumina DNA Enrichment v4", + "source": "Protocol Library" + }, + "modules": [ + { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_multi_flex" + }, + { + "mount": "right", + "pipetteName": "p50_multi_flex" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x][Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x][Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x].json new file mode 100644 index 00000000000..abb2a1b3f7d --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x][Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x].json @@ -0,0 +1,28439 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A REACTION RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p1000_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p50_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "SETTING THERMO and TEMP BLOCK Temperature", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0 + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "params": { + "celsius": 100.0 + }, + "result": { + "targetLidTemperature": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "params": { + "celsius": 4.0 + }, + "result": { + "targetTemperature": 4.0 + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Ready" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Tagment", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> ADDING TAGMIX", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 36.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 36.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 23.370000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 23.370000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 36.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 1800.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 300.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "params": { + "blockMaxVolumeUl": 50.0, + "profile": [ + { + "celsius": 55.0, + "holdSeconds": 900.0 + } + ] + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 10.0, + "holdTimeSeconds": 0.0 + }, + "result": { + "targetBlockTemperature": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding TAGSTOP", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.079999999999993 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "params": { + "blockMaxVolumeUl": 50.0, + "profile": [ + { + "celsius": 37.0, + "holdSeconds": 900.0 + } + ] + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 10.0, + "holdTimeSeconds": 0.0 + }, + "result": { + "targetBlockTemperature": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 240.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Cleanup", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Removing Supernatant", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Wash ", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 1600.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 180.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 180.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Remove Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Wash ", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 1600.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 180.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 180.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Remove Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Wash ", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 90.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 35.650000000000006 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 1600.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 180.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 180.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Remove Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 42.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 60.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Removing Residual Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 39.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 39.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 39.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 39.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 39.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 39.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 30.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding EPM", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 1.040000000000001, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 15.420000000000002, + "y": 74.24, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.040000000000001, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 15.420000000000002, + "y": 74.24, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 75.28, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 75.28, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": -1.040000000000001, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.34, + "y": 74.24, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.040000000000001, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.34, + "y": 74.24, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 73.19999999999999, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 73.19999999999999, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.390000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 27.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 24.419999999999998, + "y": 74.24, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 24.419999999999998, + "y": 74.24, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 75.28, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 75.28, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 22.34, + "y": 74.24, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 22.34, + "y": 74.24, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 73.19999999999999, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 73.19999999999999, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.390000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 27.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000003 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 10.919999999999996 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 33.42, + "y": 74.24, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 33.42, + "y": 74.24, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 75.28, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 75.28, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 31.340000000000003, + "y": 74.24, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 31.340000000000003, + "y": 74.24, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 73.19999999999999, + "z": 23.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -11.39 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 73.19999999999999, + "z": 23.260000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.390000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 27.260000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 2000.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 180.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Barcodes", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 2.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 2.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 2.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000003 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 9.919999999999996 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 8.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.079999999999993 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "params": { + "celsius": 100.0 + }, + "result": { + "targetLidTemperature": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "params": { + "blockMaxVolumeUl": 50.0, + "profile": [ + { + "celsius": 68.0, + "holdSeconds": 180.0 + }, + { + "celsius": 98.0, + "holdSeconds": 180.0 + } + ] + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "params": { + "blockMaxVolumeUl": 50.0, + "profile": [ + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + }, + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + }, + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + }, + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + }, + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + } + ] + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "params": { + "blockMaxVolumeUl": 50.0, + "profile": [ + { + "celsius": 68.0, + "holdSeconds": 60.0 + } + ] + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 10.0, + "holdTimeSeconds": 0.0 + }, + "result": { + "targetBlockTemperature": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Cleanup", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding H20 and SAMPLE", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 3.0 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 19.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 3.0 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 19.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 3.0 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 19.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> ADDING AMPure (0.8x)", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 36.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 36.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 55.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.870000000000005 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 24.870000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.780000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 24.870000000000005 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 36.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 34.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 39.650000000000006 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 1800.0 + }, + "result": { + "pipetteRetracted": false + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 300.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": false + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "newLocation": {}, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 240.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Removing Supernatant", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> ETOH Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 51.7 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 53.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 51.7 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 53.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 51.7 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 53.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 30.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Remove ETOH Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> ETOH Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 51.7 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 53.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 51.7 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 53.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 51.7 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 51.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 53.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 58.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 30.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Remove ETOH Wash", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 42.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 42.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 39.42 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.280000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 39.42 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.24, + "z": 55.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 6.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 36.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 120.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Removing Residual ETOH", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 38.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.780000000000001 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 38.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "error": { + "detail": "Cannot dispense 100.0 µL when only 50.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidDispenseVolumeError", + "wrappedErrors": [] + }, + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "status": "failed" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ProtocolCommandFailedError [line 610]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): InvalidDispenseVolumeError: Cannot dispense 100.0 µL when only 50.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "InvalidDispenseVolumeError: Cannot dispense 100.0 µL when only 50.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ProtocolCommandFailedError", + "wrappedErrors": [ + { + "detail": "Cannot dispense 100.0 µL when only 50.0 µL has been aspirated.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidDispenseVolumeError", + "wrappedErrors": [] + } + ] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000MLeft_P50MRight_HS_TM_MM_TC_2_15_ABR4_Illumina_DNA_Prep_24x.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "protocolName": "Illumina DNA Prep 24x", + "source": "Protocol Library" + }, + "modules": [ + { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p1000_multi_flex" + }, + { + "mount": "left", + "pipetteName": "p50_multi_flex" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right][Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right][Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right].json new file mode 100644 index 00000000000..85a635a8d6d --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right][Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right].json @@ -0,0 +1,95783 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A REACTION RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A NO MODULE RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "D1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p1000_single_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Dye Sample Plate 1", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Diluent Sample Plate 1", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Dye Sample Plate 2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Diluent Sample Plate 2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 172.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 163.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 154.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 145.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 136.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 127.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 118.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Dye Sample Plate 3", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Diluent Sample Plate 3", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Dye Sample Plate 1", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Diluent Sample Plate 1", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 279.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 270.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 261.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 252.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 243.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 234.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 225.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Dye Sample Plate 2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Diluent Sample Plate 2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Dye Sample Plate 3", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Adding Diluent Sample Plate 3", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 386.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 377.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 368.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 359.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 350.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 341.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 332.38, + "z": 57.5715 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_P1000SRight_None_2_15_ABR_Simple_Normalize_Long_Right.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "D1" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons Engineering ", + "description": "OT3 ABR Simple Normalize Long", + "protocolName": "OT3 ABR Simple Normalize Long", + "source": "Software Testing Team" + }, + "modules": [], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p1000_single_flex" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash][Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash][Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash].json new file mode 100644 index 00000000000..2be98b6120f --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash][Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash].json @@ -0,0 +1,1425 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_1_reservoir_290ml", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360206", + "360266" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.55, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 106.8, + "y": 42.74, + "yDimension": 71.2, + "z": 4.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "NoTrashDefinedError [line 23]: Error 4000 GENERAL_ERROR (NoTrashDefinedError): No trash container has been defined in this protocol.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "No trash container has been defined in this protocol.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "NoTrashDefinedError", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000_96_2_16_AnalysisError_DropTipsWithNoTrash.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/nest_1_reservoir_290ml/1", + "loadName": "nest_1_reservoir_290ml", + "location": { + "addressableAreaName": "C4" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + } + ], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Drop Tips with no Trash" + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin][Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin][Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin].json new file mode 100644 index 00000000000..93b099eae94 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin][Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin].json @@ -0,0 +1,1384 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashC3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 466.25, + "y": 150.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "error": { + "detail": "Cannot use Slot C3, not compatible with one or more of the following fixtures: Trash Bin in C3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "IncompatibleAddressableAreaError", + "wrappedErrors": [] + }, + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "status": "failed" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ProtocolCommandFailedError [line 20]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): IncompatibleAddressableAreaError: Cannot use Slot C3, not compatible with one or more of the following fixtures: Trash Bin in C3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "IncompatibleAddressableAreaError: Cannot use Slot C3, not compatible with one or more of the following fixtures: Trash Bin in C3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ProtocolCommandFailedError", + "wrappedErrors": [ + { + "detail": "Cannot use Slot C3, not compatible with one or more of the following fixtures: Trash Bin in C3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "IncompatibleAddressableAreaError", + "wrappedErrors": [] + } + ] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000_96_GRIPPER_2_16_AnalysisError_DropLabwareIntoTrashBin.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + } + ], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Drop Labware in Trash Bin" + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1].json new file mode 100644 index 00000000000..caffbd78786 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1].json @@ -0,0 +1,12989 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "A2" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_well_aluminum_block", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 Well Aluminum Block", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_well_aluminum_block", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "addressableAreaName": "D4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashC1", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 54.25, + "y": 150.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashD1", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 54.25, + "y": 43.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", + "loadName": "opentrons_96_well_aluminum_block", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + } + ], + "liquids": [ + { + "description": "High Quality H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + }, + { + "description": "C₃H₆O", + "displayColor": "#38588a", + "displayName": "acetone" + } + ], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Deck Configuration 1" + }, + "modules": [ + { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + { + "location": { + "slotName": "A2" + }, + "model": "magneticBlockV1" + }, + { + "location": { + "slotName": "B3" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures].json new file mode 100644 index 00000000000..c5529e8c96e --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures].json @@ -0,0 +1,10409 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "A2" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_well_aluminum_block", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 Well Aluminum Block", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_well_aluminum_block", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoFixtures.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", + "loadName": "opentrons_96_well_aluminum_block", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + } + ], + "liquids": [ + { + "description": "High Quality H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + }, + { + "description": "C₃H₆O", + "displayColor": "#38588a", + "displayName": "acetone" + } + ], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Deck Configuration 1 - No Fixtures" + }, + "modules": [ + { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + { + "location": { + "slotName": "A2" + }, + "model": "magneticBlockV1" + }, + { + "location": { + "slotName": "B3" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures].json new file mode 100644 index 00000000000..fdb32f11a8b --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures].json @@ -0,0 +1,8583 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModulesNoFixtures.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + } + ], + "liquids": [ + { + "description": "High Quality H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + }, + { + "description": "C₃H₆O", + "displayColor": "#38588a", + "displayName": "acetone" + } + ], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Deck Configuration 1 - No Modules or Fixtures" + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules].json new file mode 100644 index 00000000000..29699064add --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules].json @@ -0,0 +1,11163 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck", + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "addressableAreaName": "D4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H1": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H2": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H4": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H5": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H7": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H8": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H9": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H10": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H11": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "C12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "D12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "E12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "F12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "G12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "H12": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashC1", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 54.25, + "y": 150.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashD1", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 54.25, + "y": 43.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_DeckConfiguration1_NoModules.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + } + ], + "liquids": [ + { + "description": "High Quality H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + }, + { + "description": "C₃H₆O", + "displayColor": "#38588a", + "displayName": "acetone" + } + ], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Deck Configuration 1 - No Modules" + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke].json new file mode 100644 index 00000000000..c638710d9ea --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke][Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke].json @@ -0,0 +1,12660 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "A3" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_well_aluminum_block", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 Well Aluminum Block", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_well_aluminum_block", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_pcr_adapter", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 13.85 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_pcr_adapter", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 69, + "z": 1.85 + }, + "A10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 69, + "z": 1.85 + }, + "A11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 69, + "z": 1.85 + }, + "A12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 69, + "z": 1.85 + }, + "A2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 69, + "z": 1.85 + }, + "A3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 69, + "z": 1.85 + }, + "A4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 69, + "z": 1.85 + }, + "A5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 69, + "z": 1.85 + }, + "A6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 69, + "z": 1.85 + }, + "A7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 69, + "z": 1.85 + }, + "A8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 69, + "z": 1.85 + }, + "A9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 69, + "z": 1.85 + }, + "B1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 60, + "z": 1.85 + }, + "B10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 60, + "z": 1.85 + }, + "B11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 60, + "z": 1.85 + }, + "B12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 60, + "z": 1.85 + }, + "B2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 60, + "z": 1.85 + }, + "B3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 60, + "z": 1.85 + }, + "B4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 60, + "z": 1.85 + }, + "B5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 60, + "z": 1.85 + }, + "B6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 60, + "z": 1.85 + }, + "B7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 60, + "z": 1.85 + }, + "B8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 60, + "z": 1.85 + }, + "B9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 60, + "z": 1.85 + }, + "C1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 51, + "z": 1.85 + }, + "C10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 51, + "z": 1.85 + }, + "C11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 51, + "z": 1.85 + }, + "C12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 51, + "z": 1.85 + }, + "C2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 51, + "z": 1.85 + }, + "C3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 51, + "z": 1.85 + }, + "C4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 51, + "z": 1.85 + }, + "C5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 51, + "z": 1.85 + }, + "C6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 51, + "z": 1.85 + }, + "C7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 51, + "z": 1.85 + }, + "C8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 51, + "z": 1.85 + }, + "C9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 51, + "z": 1.85 + }, + "D1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 42, + "z": 1.85 + }, + "D10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 42, + "z": 1.85 + }, + "D11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 42, + "z": 1.85 + }, + "D12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 42, + "z": 1.85 + }, + "D2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 42, + "z": 1.85 + }, + "D3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 42, + "z": 1.85 + }, + "D4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 42, + "z": 1.85 + }, + "D5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 42, + "z": 1.85 + }, + "D6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 42, + "z": 1.85 + }, + "D7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 42, + "z": 1.85 + }, + "D8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 42, + "z": 1.85 + }, + "D9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 42, + "z": 1.85 + }, + "E1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 33, + "z": 1.85 + }, + "E10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 33, + "z": 1.85 + }, + "E11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 33, + "z": 1.85 + }, + "E12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 33, + "z": 1.85 + }, + "E2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 33, + "z": 1.85 + }, + "E3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 33, + "z": 1.85 + }, + "E4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 33, + "z": 1.85 + }, + "E5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 33, + "z": 1.85 + }, + "E6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 33, + "z": 1.85 + }, + "E7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 33, + "z": 1.85 + }, + "E8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 33, + "z": 1.85 + }, + "E9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 33, + "z": 1.85 + }, + "F1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 24, + "z": 1.85 + }, + "F10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 24, + "z": 1.85 + }, + "F11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 24, + "z": 1.85 + }, + "F12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 24, + "z": 1.85 + }, + "F2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 24, + "z": 1.85 + }, + "F3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 24, + "z": 1.85 + }, + "F4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 24, + "z": 1.85 + }, + "F5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 24, + "z": 1.85 + }, + "F6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 24, + "z": 1.85 + }, + "F7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 24, + "z": 1.85 + }, + "F8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 24, + "z": 1.85 + }, + "F9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 24, + "z": 1.85 + }, + "G1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 15, + "z": 1.85 + }, + "G10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 15, + "z": 1.85 + }, + "G11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 15, + "z": 1.85 + }, + "G12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 15, + "z": 1.85 + }, + "G2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 15, + "z": 1.85 + }, + "G3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 15, + "z": 1.85 + }, + "G4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 15, + "z": 1.85 + }, + "G5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 15, + "z": 1.85 + }, + "G6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 15, + "z": 1.85 + }, + "G7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 15, + "z": 1.85 + }, + "G8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 15, + "z": 1.85 + }, + "G9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 15, + "z": 1.85 + }, + "H1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 6, + "z": 1.85 + }, + "H10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 6, + "z": 1.85 + }, + "H11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 6, + "z": 1.85 + }, + "H12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 6, + "z": 1.85 + }, + "H2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 6, + "z": 1.85 + }, + "H3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 6, + "z": 1.85 + }, + "H4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 6, + "z": 1.85 + }, + "H5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 6, + "z": 1.85 + }, + "H6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 6, + "z": 1.85 + }, + "H7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 6, + "z": 1.85 + }, + "H8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 6, + "z": 1.85 + }, + "H9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 6, + "z": 1.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_1_reservoir_290ml", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360206", + "360266" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 44.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.55, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 106.8, + "y": 42.74, + "yDimension": 71.2, + "z": 4.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 29000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 466.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 402.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 466.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 402.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 466.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 402.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 466.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 402.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 466.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 402.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 466.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 402.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "params": { + "configurationParams": { + "style": "ALL" + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 29.999999999999993 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 74.39999999999998 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 995.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 29.999999999999993 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 74.39999999999998 + }, + "volume": 995.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 80.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 29.999999999999993 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 74.39999999999998 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 995.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 29.999999999999993 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 74.39999999999998 + }, + "volume": 995.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 434.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 80.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "pushOut": 0.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "pushOut": 0.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.55 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 227.88, + "y": 42.74, + "z": 5.85 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "movableTrashB3", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 434.25, + "y": 257.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 80.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 90.88 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "C3" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": {}, + "strategy": "usingGripper" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 75.0, + "holdTimeSeconds": 5.0 + }, + "result": { + "targetBlockTemperature": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "params": { + "celsius": 80.0 + }, + "result": { + "targetLidTemperature": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateBlock", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "params": {}, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setTargetTemperature", + "params": { + "celsius": 75.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 1000.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "params": { + "celsius": 80.0 + }, + "result": { + "targetTemperature": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "params": { + "celsius": 10.0 + }, + "result": { + "targetTemperature": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/deactivate", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_P1000_96_GRIPPER_HS_TM_TC_MB_2_16_Smoke.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", + "loadName": "opentrons_96_well_aluminum_block", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_pcr_adapter/1", + "loadName": "opentrons_96_pcr_adapter", + "location": {} + }, + { + "definitionUri": "opentrons/nest_1_reservoir_290ml/1", + "loadName": "nest_1_reservoir_290ml", + "location": { + "addressableAreaName": "D4" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": "offDeck" + } + ], + "liquids": [ + { + "description": "High Quality H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + } + ], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - MEGAAA PROTOCOL - LETS BREAK, I MEAN TEST, EVERYTHING!!!!!" + }, + "modules": [ + { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + { + "location": { + "slotName": "A3" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "D1" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel][Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel][Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel].json new file mode 100644 index 00000000000..e22986e0fdb --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel][Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel].json @@ -0,0 +1,13455 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Thermo Scientific", + "brandId": [ + "AB2396" + ], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A1" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A2" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "UnsuitableTiprackForPipetteMotion [line 276]: Error 2004 MOTION_PLANNING_FAILURE (UnsuitableTiprackForPipetteMotion): Opentrons Flex 96 Tip Rack 1000 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "Opentrons Flex 96 Tip Rack 1000 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "2004", + "errorInfo": {}, + "errorType": "UnsuitableTiprackForPipetteMotion", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000_96_HS_TM_MM_2_15_ABR5_6_HDQ_Bacteria_ParkTips_96_channel.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/2", + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B1" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_1000ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A1" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_1000ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A2" + } + } + ], + "liquids": [], + "metadata": { + "author": "Zach Galluzzo ", + "protocolName": "Omega HDQ DNA Extraction: Bacteria 96 FOR ABR TESTING" + }, + "modules": [ + { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch][Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch][Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch].json new file mode 100644 index 00000000000..49a64a88098 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch][Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch].json @@ -0,0 +1,13255 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "B1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Thermo Scientific", + "brandId": [ + "AB2396" + ], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Thermo Scientific", + "brandId": [ + "AB2396" + ], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "A1" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "A2" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "UnsuitableTiprackForPipetteMotion [line 288]: Error 2004 MOTION_PLANNING_FAILURE (UnsuitableTiprackForPipetteMotion): Opentrons Flex 96 Tip Rack 200 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "Opentrons Flex 96 Tip Rack 200 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "2004", + "errorInfo": {}, + "errorType": "UnsuitableTiprackForPipetteMotion", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000_96_HS_TM_MM_2_15_MagMaxRNACells96Ch.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/2", + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "B1" + } + }, + { + "definitionUri": "opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/2", + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_200ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "A1" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_200ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "A2" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons Engineering ", + "description": "MagMax RNA Extraction: Cells 96 ABR TESTING", + "protocolName": "MagMax RNA Extraction: Cells 96 ABR TESTING", + "source": "Software Testing Team" + }, + "modules": [ + { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III][Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III][Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III].json new file mode 100644 index 00000000000..76361297ac1 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III][Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III].json @@ -0,0 +1,5852 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A DRY RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "D2" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "error": { + "detail": "Labware nest_96_wellplate_2ml_deep is already present at slotName=.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "LocationIsOccupiedError", + "wrappedErrors": [] + }, + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "status": "failed" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ProtocolCommandFailedError [line 45]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): LocationIsOccupiedError: Labware nest_96_wellplate_2ml_deep is already present at slotName=.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "LocationIsOccupiedError: Labware nest_96_wellplate_2ml_deep is already present at slotName=.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ProtocolCommandFailedError", + "wrappedErrors": [ + { + "detail": "Labware nest_96_wellplate_2ml_deep is already present at slotName=.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "LocationIsOccupiedError", + "wrappedErrors": [] + } + ] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000_96_HS_TM_TC_MM_2_15_ABR5_6_Illumina_DNA_Prep_96x_Head_PART_III.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_200ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "protocolName": "Illumina DNA Prep 96x Head PART III", + "source": "Protocol Library" + }, + "modules": [ + { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + } + ], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR][Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR][Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR].json new file mode 100644 index 00000000000..527e98299ba --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR][Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR].json @@ -0,0 +1,11133 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A DRY RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "USED TIPS WILL BE RE-RACKED", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_50ul_rss", + "location": { + "slotName": "C3" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_50ul_rss", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "B3" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Ready" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Fragmenting / End Repair / A-Tailing", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding FRERAT", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "UnsuitableTiprackForPipetteMotion [line 183]: Error 2004 MOTION_PLANNING_FAILURE (UnsuitableTiprackForPipetteMotion): Opentrons Flex 96 Tip Rack 50 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "Opentrons Flex 96 Tip Rack 50 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "2004", + "errorInfo": {}, + "errorType": "UnsuitableTiprackForPipetteMotion", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000_96_None_2_15_ABR5_6_IDT_xGen_EZ_96x_Head_PART_I_III_ABR.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D1" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_50ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_50ul_rss", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B1" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_200ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_200ul_rss", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "A2" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "protocolName": "IDT xGen EZ 96x Head PART I-III ABR", + "source": "Protocol Library" + }, + "modules": [ + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict][Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict][Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict].json new file mode 100644 index 00000000000..1743bd960a3 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict][Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict].json @@ -0,0 +1,1825 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/deactivate", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.1, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "error": { + "detail": "Cannot use Waste Chute, not compatible with one or more of the following fixtures: Slot D3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "IncompatibleAddressableAreaError", + "wrappedErrors": [] + }, + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "stayAtHighestPossibleZ": false + }, + "status": "failed" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ProtocolCommandFailedError [line 24]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): IncompatibleAddressableAreaError: Cannot use Waste Chute, not compatible with one or more of the following fixtures: Slot D3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "IncompatibleAddressableAreaError: Cannot use Waste Chute, not compatible with one or more of the following fixtures: Slot D3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ProtocolCommandFailedError", + "wrappedErrors": [ + { + "detail": "Cannot use Waste Chute, not compatible with one or more of the following fixtures: Slot D3", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "IncompatibleAddressableAreaError", + "wrappedErrors": [] + } + ] + } + ] + } + ], + "files": [ + { + "name": "Flex_P1000_96_TM_2_16_AnalysisError_ModuleAndWasteChuteConflict.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": {} + } + ], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - Module and Waste Chute Conflict" + }, + "modules": [ + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria][Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria][Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria].json new file mode 100644 index 00000000000..5f6c32dbb33 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria][Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria].json @@ -0,0 +1,13334 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 42.25 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deepwell Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Deep Well Heater-Shaker Adapter with NEST Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 45.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Magnetic Block GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 38.0 + }, + "model": "magneticBlockV1", + "moduleType": "magneticBlockType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": {}, + "ot2_standard": {}, + "ot3_standard": {} + } + }, + "model": "magneticBlockV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_pcr_adapter_armadillo_wellplate_200ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.9 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "Thermo Scientific", + "brandId": [ + "AB2396" + ], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter with Armadillo Well Plate 200 µl", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_pcr_adapter_armadillo_wellplate_200ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 3.95 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 3.95 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 3.95 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 3.95 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 3.95 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 3.95 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 3.95 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 3.95 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 3.95 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 3.95 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 3.95 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 3.95 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 3.95 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 3.95 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 3.95 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 3.95 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 3.95 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 3.95 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 3.95 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 3.95 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 3.95 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 3.95 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 3.95 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 3.95 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 3.95 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 3.95 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 3.95 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 3.95 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 3.95 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 3.95 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 3.95 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 3.95 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 3.95 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 3.95 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 3.95 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 3.95 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 3.95 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 3.95 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 3.95 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 3.95 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 3.95 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 3.95 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 3.95 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 3.95 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 3.95 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 3.95 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 3.95 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 3.95 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 3.95 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 3.95 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 3.95 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 3.95 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 3.95 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 3.95 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 3.95 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 3.95 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 3.95 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 3.95 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 3.95 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 3.95 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 3.95 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 3.95 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 3.95 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 3.95 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 3.95 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 3.95 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 3.95 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 3.95 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 3.95 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 3.95 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 3.95 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 3.95 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 3.95 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 3.95 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 3.95 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 3.95 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 3.95 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 3.95 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 3.95 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 3.95 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 3.95 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 3.95 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 3.95 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 3.95 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 3.95 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 3.95 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 3.95 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 3.95 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 3.95 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 3.95 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 3.95 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 3.95 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 3.95 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 3.95 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 3.95 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 3.95 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Thermo Scientific", + "brandId": [ + "AB2396" + ], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A1" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A2" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "RSS_made" + ] + }, + "cornerOffsetFromSlot": { + "x": -14.375, + "y": -3.625, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL with adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 78, + "z": 12.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 78, + "z": 12.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 78, + "z": 12.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 78, + "z": 12.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 78, + "z": 12.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 78, + "z": 12.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 78, + "z": 12.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 78, + "z": 12.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 78, + "z": 12.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 78, + "z": 12.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 78, + "z": 12.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 78, + "z": 12.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 69, + "z": 12.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 69, + "z": 12.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 69, + "z": 12.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 69, + "z": 12.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 69, + "z": 12.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 69, + "z": 12.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 69, + "z": 12.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 69, + "z": 12.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 69, + "z": 12.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 69, + "z": 12.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 69, + "z": 12.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 69, + "z": 12.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 60, + "z": 12.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 60, + "z": 12.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 60, + "z": 12.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 60, + "z": 12.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 60, + "z": 12.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 60, + "z": 12.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 60, + "z": 12.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 60, + "z": 12.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 60, + "z": 12.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 60, + "z": 12.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 60, + "z": 12.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 60, + "z": 12.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 51, + "z": 12.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 51, + "z": 12.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 51, + "z": 12.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 51, + "z": 12.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 51, + "z": 12.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 51, + "z": 12.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 51, + "z": 12.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 51, + "z": 12.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 51, + "z": 12.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 51, + "z": 12.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 51, + "z": 12.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 51, + "z": 12.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 42, + "z": 12.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 42, + "z": 12.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 42, + "z": 12.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 42, + "z": 12.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 42, + "z": 12.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 42, + "z": 12.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 42, + "z": 12.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 42, + "z": 12.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 42, + "z": 12.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 42, + "z": 12.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 42, + "z": 12.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 42, + "z": 12.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 33, + "z": 12.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 33, + "z": 12.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 33, + "z": 12.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 33, + "z": 12.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 33, + "z": 12.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 33, + "z": 12.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 33, + "z": 12.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 33, + "z": 12.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 33, + "z": 12.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 33, + "z": 12.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 33, + "z": 12.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 33, + "z": 12.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 24, + "z": 12.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 24, + "z": 12.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 24, + "z": 12.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 24, + "z": 12.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 24, + "z": 12.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 24, + "z": 12.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 24, + "z": 12.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 24, + "z": 12.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 24, + "z": 12.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 24, + "z": 12.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 24, + "z": 12.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 24, + "z": 12.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 28.75, + "y": 15, + "z": 12.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 109.75, + "y": 15, + "z": 12.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 118.75, + "y": 15, + "z": 12.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 127.75, + "y": 15, + "z": 12.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 37.75, + "y": 15, + "z": 12.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 46.75, + "y": 15, + "z": 12.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 55.75, + "y": 15, + "z": 12.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 64.75, + "y": 15, + "z": 12.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 73.75, + "y": 15, + "z": 12.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 82.75, + "y": 15, + "z": 12.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 91.75, + "y": 15, + "z": 12.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 100.75, + "y": 15, + "z": 12.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_96" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "UnsuitableTiprackForPipetteMotion [line 254]: Error 2004 MOTION_PLANNING_FAILURE (UnsuitableTiprackForPipetteMotion): Opentrons Flex 96 Tip Rack 1000 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "Opentrons Flex 96 Tip Rack 1000 µL with adapter must be on an Opentrons Flex 96 Tip Rack Adapter in order to pick up or return all 96 tips simultaneously.", + "errorCode": "2004", + "errorInfo": {}, + "errorType": "UnsuitableTiprackForPipetteMotion", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "Flex_P100_96_HS_TM_2_15_Quick_Zymo_RNA_Bacteria.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_pcr_adapter_armadillo_wellplate_200ul/1", + "loadName": "opentrons_96_pcr_adapter_armadillo_wellplate_200ul", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B1" + } + }, + { + "definitionUri": "opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/2", + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_1000ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A1" + } + }, + { + "definitionUri": "custom_beta/opentrons_ot3_96_tiprack_1000ul_rss/1", + "loadName": "opentrons_ot3_96_tiprack_1000ul_rss", + "location": { + "slotName": "A2" + } + } + ], + "liquids": [], + "metadata": { + "author": "Zach Galluzzo ", + "protocolName": "Quick Zymo Magbead RNA Extraction with Lysis: Bacteria 96 Channel Deletion Test" + }, + "modules": [ + { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "C1" + }, + "model": "magneticBlockV1" + }, + { + "location": { + "slotName": "D3" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol][Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol][Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol].json new file mode 100644 index 00000000000..b0d5b1371e1 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol][Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol].json @@ -0,0 +1,1247 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "A1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "error": { + "detail": "Cannot load a Gen2 pipette on a Flex.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidSpecificationForRobotTypeError", + "wrappedErrors": [] + }, + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "status": "failed" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "ProtocolCommandFailedError [line 22]: Error 4000 GENERAL_ERROR (ProtocolCommandFailedError): InvalidSpecificationForRobotTypeError: Cannot load a Gen2 pipette on a Flex.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "InvalidSpecificationForRobotTypeError: Cannot load a Gen2 pipette on a Flex.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ProtocolCommandFailedError", + "wrappedErrors": [ + { + "detail": "Cannot load a Gen2 pipette on a Flex.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidSpecificationForRobotTypeError", + "wrappedErrors": [] + } + ] + } + ] + } + ], + "files": [ + { + "name": "Flex_P300Gen2_None_2_16_AnalysisError_OT2PipetteInFlexProtocol.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "A1" + } + } + ], + "liquids": [], + "metadata": { + "author": "Derek Maggio ", + "protocolName": "QA Protocol - Analysis Error - OT-2 Pipette in Flex Protocol" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2][Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2][Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2].json new file mode 100644 index 00000000000..bba17d746ee --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2][Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2].json @@ -0,0 +1,140761 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "THIS IS A DRY RUN", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul", + "location": { + "slotName": "D3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.81 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "hsp9601" + ], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Bio-Rad 96 Well Plate 200 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with Bio-Rad Well Plate 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 4 + }, + "A10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 4 + }, + "A11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 4 + }, + "A12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 4 + }, + "A2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 4 + }, + "A3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 4 + }, + "A4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 4 + }, + "A5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 4 + }, + "A6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 4 + }, + "A7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 4 + }, + "A8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 4 + }, + "A9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 4 + }, + "B1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 4 + }, + "B10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 4 + }, + "B11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 4 + }, + "B12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 4 + }, + "B2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 4 + }, + "B3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 4 + }, + "B4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 4 + }, + "B5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 4 + }, + "B6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 4 + }, + "B7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 4 + }, + "B8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 4 + }, + "B9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 4 + }, + "C1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 4 + }, + "C10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 4 + }, + "C11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 4 + }, + "C12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 4 + }, + "C2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 4 + }, + "C3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 4 + }, + "C4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 4 + }, + "C5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 4 + }, + "C6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 4 + }, + "C7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 4 + }, + "C8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 4 + }, + "C9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 4 + }, + "D1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 4 + }, + "D10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 4 + }, + "D11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 4 + }, + "D12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 4 + }, + "D2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 4 + }, + "D3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 4 + }, + "D4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 4 + }, + "D5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 4 + }, + "D6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 4 + }, + "D7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 4 + }, + "D8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 4 + }, + "D9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 4 + }, + "E1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 4 + }, + "E10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 4 + }, + "E11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 4 + }, + "E12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 4 + }, + "E2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 4 + }, + "E3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 4 + }, + "E4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 4 + }, + "E5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 4 + }, + "E6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 4 + }, + "E7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 4 + }, + "E8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 4 + }, + "E9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 4 + }, + "F1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 4 + }, + "F10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 4 + }, + "F11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 4 + }, + "F12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 4 + }, + "F2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 4 + }, + "F3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 4 + }, + "F4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 4 + }, + "F5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 4 + }, + "F6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 4 + }, + "F7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 4 + }, + "F8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 4 + }, + "F9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 4 + }, + "G1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 4 + }, + "G10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 4 + }, + "G11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 4 + }, + "G12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 4 + }, + "G2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 4 + }, + "G3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 4 + }, + "G4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 4 + }, + "G5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 4 + }, + "G6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 4 + }, + "G7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 4 + }, + "G8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 4 + }, + "G9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 4 + }, + "H1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 4 + }, + "H10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 4 + }, + "H11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 4 + }, + "H12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 4 + }, + "H2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 4 + }, + "H3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 4 + }, + "H4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 4 + }, + "H5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 4 + }, + "H6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 4 + }, + "H7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 4 + }, + "H8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 4 + }, + "H9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 4 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.81 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "hsp9601" + ], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Bio-Rad 96 Well Plate 200 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with Bio-Rad Well Plate 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 4 + }, + "A10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 4 + }, + "A11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 4 + }, + "A12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 4 + }, + "A2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 4 + }, + "A3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 4 + }, + "A4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 4 + }, + "A5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 4 + }, + "A6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 4 + }, + "A7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 4 + }, + "A8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 4 + }, + "A9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 4 + }, + "B1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 4 + }, + "B10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 4 + }, + "B11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 4 + }, + "B12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 4 + }, + "B2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 4 + }, + "B3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 4 + }, + "B4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 4 + }, + "B5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 4 + }, + "B6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 4 + }, + "B7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 4 + }, + "B8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 4 + }, + "B9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 4 + }, + "C1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 4 + }, + "C10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 4 + }, + "C11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 4 + }, + "C12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 4 + }, + "C2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 4 + }, + "C3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 4 + }, + "C4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 4 + }, + "C5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 4 + }, + "C6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 4 + }, + "C7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 4 + }, + "C8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 4 + }, + "C9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 4 + }, + "D1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 4 + }, + "D10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 4 + }, + "D11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 4 + }, + "D12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 4 + }, + "D2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 4 + }, + "D3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 4 + }, + "D4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 4 + }, + "D5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 4 + }, + "D6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 4 + }, + "D7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 4 + }, + "D8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 4 + }, + "D9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 4 + }, + "E1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 4 + }, + "E10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 4 + }, + "E11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 4 + }, + "E12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 4 + }, + "E2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 4 + }, + "E3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 4 + }, + "E4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 4 + }, + "E5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 4 + }, + "E6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 4 + }, + "E7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 4 + }, + "E8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 4 + }, + "E9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 4 + }, + "F1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 4 + }, + "F10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 4 + }, + "F11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 4 + }, + "F12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 4 + }, + "F2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 4 + }, + "F3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 4 + }, + "F4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 4 + }, + "F5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 4 + }, + "F6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 4 + }, + "F7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 4 + }, + "F8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 4 + }, + "F9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 4 + }, + "G1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 4 + }, + "G10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 4 + }, + "G11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 4 + }, + "G12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 4 + }, + "G2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 4 + }, + "G3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 4 + }, + "G4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 4 + }, + "G5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 4 + }, + "G6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 4 + }, + "G7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 4 + }, + "G8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 4 + }, + "G9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 4 + }, + "H1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 4 + }, + "H10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 4 + }, + "H11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 4 + }, + "H12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 4 + }, + "H2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 4 + }, + "H3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 4 + }, + "H4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 4 + }, + "H5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 4 + }, + "H6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 4 + }, + "H7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 4 + }, + "H8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 4 + }, + "H9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 4 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "corning_384_wellplate_112ul_flat", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Corning", + "brandId": [ + "3640", + "3662", + "3680", + "3700", + "3701", + "3702" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/384-Well-Microplates/Corning%C2%AE-384-well-Clear-Polystyrene-Microplates/p/corning384WellClearPolystyreneMicroplates" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 12.4, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A13", + "A14", + "A15", + "A16", + "A17", + "A18", + "A19", + "A2", + "A20", + "A21", + "A22", + "A23", + "A24", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B13", + "B14", + "B15", + "B16", + "B17", + "B18", + "B19", + "B2", + "B20", + "B21", + "B22", + "B23", + "B24", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C13", + "C14", + "C15", + "C16", + "C17", + "C18", + "C19", + "C2", + "C20", + "C21", + "C22", + "C23", + "C24", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D13", + "D14", + "D15", + "D16", + "D17", + "D18", + "D19", + "D2", + "D20", + "D21", + "D22", + "D23", + "D24", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E13", + "E14", + "E15", + "E16", + "E17", + "E18", + "E19", + "E2", + "E20", + "E21", + "E22", + "E23", + "E24", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F13", + "F14", + "F15", + "F16", + "F17", + "F18", + "F19", + "F2", + "F20", + "F21", + "F22", + "F23", + "F24", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G13", + "G14", + "G15", + "G16", + "G17", + "G18", + "G19", + "G2", + "G20", + "G21", + "G22", + "G23", + "G24", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H13", + "H14", + "H15", + "H16", + "H17", + "H18", + "H19", + "H2", + "H20", + "H21", + "H22", + "H23", + "H24", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9", + "I1", + "I10", + "I11", + "I12", + "I13", + "I14", + "I15", + "I16", + "I17", + "I18", + "I19", + "I2", + "I20", + "I21", + "I22", + "I23", + "I24", + "I3", + "I4", + "I5", + "I6", + "I7", + "I8", + "I9", + "J1", + "J10", + "J11", + "J12", + "J13", + "J14", + "J15", + "J16", + "J17", + "J18", + "J19", + "J2", + "J20", + "J21", + "J22", + "J23", + "J24", + "J3", + "J4", + "J5", + "J6", + "J7", + "J8", + "J9", + "K1", + "K10", + "K11", + "K12", + "K13", + "K14", + "K15", + "K16", + "K17", + "K18", + "K19", + "K2", + "K20", + "K21", + "K22", + "K23", + "K24", + "K3", + "K4", + "K5", + "K6", + "K7", + "K8", + "K9", + "L1", + "L10", + "L11", + "L12", + "L13", + "L14", + "L15", + "L16", + "L17", + "L18", + "L19", + "L2", + "L20", + "L21", + "L22", + "L23", + "L24", + "L3", + "L4", + "L5", + "L6", + "L7", + "L8", + "L9", + "M1", + "M10", + "M11", + "M12", + "M13", + "M14", + "M15", + "M16", + "M17", + "M18", + "M19", + "M2", + "M20", + "M21", + "M22", + "M23", + "M24", + "M3", + "M4", + "M5", + "M6", + "M7", + "M8", + "M9", + "N1", + "N10", + "N11", + "N12", + "N13", + "N14", + "N15", + "N16", + "N17", + "N18", + "N19", + "N2", + "N20", + "N21", + "N22", + "N23", + "N24", + "N3", + "N4", + "N5", + "N6", + "N7", + "N8", + "N9", + "O1", + "O10", + "O11", + "O12", + "O13", + "O14", + "O15", + "O16", + "O17", + "O18", + "O19", + "O2", + "O20", + "O21", + "O22", + "O23", + "O24", + "O3", + "O4", + "O5", + "O6", + "O7", + "O8", + "O9", + "P1", + "P10", + "P11", + "P12", + "P13", + "P14", + "P15", + "P16", + "P17", + "P18", + "P19", + "P2", + "P20", + "P21", + "P22", + "P23", + "P24", + "P3", + "P4", + "P5", + "P6", + "P7", + "P8", + "P9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Corning 384 Well Plate 112 µL Flat", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ] + ], + "parameters": { + "format": "384Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "corning_384_wellplate_112ul_flat" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.4 + }, + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 8.32 + } + }, + "stackingOffsetWithModule": {}, + "version": 2, + "wells": { + "A1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "B1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "C1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "D1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "E1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "F1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "G1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "H1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "I1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "J1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "K1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "L1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "M1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "N1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "O1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "P1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "corning_384_wellplate_112ul_flat", + "location": { + "slotName": "A1" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Corning", + "brandId": [ + "3640", + "3662", + "3680", + "3700", + "3701", + "3702" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/384-Well-Microplates/Corning%C2%AE-384-well-Clear-Polystyrene-Microplates/p/corning384WellClearPolystyreneMicroplates" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 12.4, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A13", + "A14", + "A15", + "A16", + "A17", + "A18", + "A19", + "A2", + "A20", + "A21", + "A22", + "A23", + "A24", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B13", + "B14", + "B15", + "B16", + "B17", + "B18", + "B19", + "B2", + "B20", + "B21", + "B22", + "B23", + "B24", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C13", + "C14", + "C15", + "C16", + "C17", + "C18", + "C19", + "C2", + "C20", + "C21", + "C22", + "C23", + "C24", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D13", + "D14", + "D15", + "D16", + "D17", + "D18", + "D19", + "D2", + "D20", + "D21", + "D22", + "D23", + "D24", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E13", + "E14", + "E15", + "E16", + "E17", + "E18", + "E19", + "E2", + "E20", + "E21", + "E22", + "E23", + "E24", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F13", + "F14", + "F15", + "F16", + "F17", + "F18", + "F19", + "F2", + "F20", + "F21", + "F22", + "F23", + "F24", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G13", + "G14", + "G15", + "G16", + "G17", + "G18", + "G19", + "G2", + "G20", + "G21", + "G22", + "G23", + "G24", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H13", + "H14", + "H15", + "H16", + "H17", + "H18", + "H19", + "H2", + "H20", + "H21", + "H22", + "H23", + "H24", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9", + "I1", + "I10", + "I11", + "I12", + "I13", + "I14", + "I15", + "I16", + "I17", + "I18", + "I19", + "I2", + "I20", + "I21", + "I22", + "I23", + "I24", + "I3", + "I4", + "I5", + "I6", + "I7", + "I8", + "I9", + "J1", + "J10", + "J11", + "J12", + "J13", + "J14", + "J15", + "J16", + "J17", + "J18", + "J19", + "J2", + "J20", + "J21", + "J22", + "J23", + "J24", + "J3", + "J4", + "J5", + "J6", + "J7", + "J8", + "J9", + "K1", + "K10", + "K11", + "K12", + "K13", + "K14", + "K15", + "K16", + "K17", + "K18", + "K19", + "K2", + "K20", + "K21", + "K22", + "K23", + "K24", + "K3", + "K4", + "K5", + "K6", + "K7", + "K8", + "K9", + "L1", + "L10", + "L11", + "L12", + "L13", + "L14", + "L15", + "L16", + "L17", + "L18", + "L19", + "L2", + "L20", + "L21", + "L22", + "L23", + "L24", + "L3", + "L4", + "L5", + "L6", + "L7", + "L8", + "L9", + "M1", + "M10", + "M11", + "M12", + "M13", + "M14", + "M15", + "M16", + "M17", + "M18", + "M19", + "M2", + "M20", + "M21", + "M22", + "M23", + "M24", + "M3", + "M4", + "M5", + "M6", + "M7", + "M8", + "M9", + "N1", + "N10", + "N11", + "N12", + "N13", + "N14", + "N15", + "N16", + "N17", + "N18", + "N19", + "N2", + "N20", + "N21", + "N22", + "N23", + "N24", + "N3", + "N4", + "N5", + "N6", + "N7", + "N8", + "N9", + "O1", + "O10", + "O11", + "O12", + "O13", + "O14", + "O15", + "O16", + "O17", + "O18", + "O19", + "O2", + "O20", + "O21", + "O22", + "O23", + "O24", + "O3", + "O4", + "O5", + "O6", + "O7", + "O8", + "O9", + "P1", + "P10", + "P11", + "P12", + "P13", + "P14", + "P15", + "P16", + "P17", + "P18", + "P19", + "P2", + "P20", + "P21", + "P22", + "P23", + "P24", + "P3", + "P4", + "P5", + "P6", + "P7", + "P8", + "P9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Corning 384 Well Plate 112 µL Flat", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ] + ], + "parameters": { + "format": "384Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "corning_384_wellplate_112ul_flat" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_aluminum_flat_bottom_plate": { + "x": 0, + "y": 0, + "z": 4.4 + }, + "opentrons_universal_flat_adapter": { + "x": 0, + "y": 0, + "z": 8.32 + } + }, + "stackingOffsetWithModule": {}, + "version": 2, + "wells": { + "A1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "A9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 76.49, + "yDimension": 3.63, + "z": 2.79 + }, + "B1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "B9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 71.99, + "yDimension": 3.63, + "z": 2.79 + }, + "C1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "C9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 67.49, + "yDimension": 3.63, + "z": 2.79 + }, + "D1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "D9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 62.99, + "yDimension": 3.63, + "z": 2.79 + }, + "E1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "E9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 58.49, + "yDimension": 3.63, + "z": 2.79 + }, + "F1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "F9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 53.99, + "yDimension": 3.63, + "z": 2.79 + }, + "G1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "G9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 49.49, + "yDimension": 3.63, + "z": 2.79 + }, + "H1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "H9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 44.99, + "yDimension": 3.63, + "z": 2.79 + }, + "I1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "I9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 40.49, + "yDimension": 3.63, + "z": 2.79 + }, + "J1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "J9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 35.99, + "yDimension": 3.63, + "z": 2.79 + }, + "K1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "K9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 31.49, + "yDimension": 3.63, + "z": 2.79 + }, + "L1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "L9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 26.99, + "yDimension": 3.63, + "z": 2.79 + }, + "M1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "M9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 22.49, + "yDimension": 3.63, + "z": 2.79 + }, + "N1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "N9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 17.99, + "yDimension": 3.63, + "z": 2.79 + }, + "O1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "O9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 13.49, + "yDimension": 3.63, + "z": 2.79 + }, + "P1": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 12.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P10": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 52.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P11": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 57.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P12": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 61.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P13": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 66.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P14": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 70.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P15": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 75.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P16": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 79.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P17": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 84.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P18": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 88.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P19": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 93.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P2": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 16.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P20": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 97.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P21": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 102.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P22": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 106.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P23": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 111.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P24": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 115.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P3": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 21.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P4": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 25.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P5": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 30.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P6": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 34.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P7": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 39.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P8": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 43.62, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + }, + "P9": { + "depth": 11.43, + "shape": "rectangular", + "totalLiquidVolume": 112, + "x": 48.12, + "xDimension": 3.63, + "y": 8.99, + "yDimension": 3.63, + "z": 2.79 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p50_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p1000_multi_flex" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "There are 24 Samples", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Dispensing Diluent Part 1 and Part 2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 4.9999999999999964 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 36.4 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 95.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 95.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 4.9999999999999964 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 36.4 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 95.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 95.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 80.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 4.9999999999999964 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 36.4 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -26.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 4.55 + }, + "volume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 98.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 95.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 95.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Sample to Diluent Part 1", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 2.0, + "volume": 2.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "volume": 2.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 2.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 2.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 2.0, + "volume": 2.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "volume": 2.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 2.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 2.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 2.0, + "volume": 2.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "volume": 2.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 2.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 2.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Mixing", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Diluted Sample to Diluent Part 2", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Mixing", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 18.810000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding qPCR Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Standards to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Diluted Sample to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Dispensing 384 well", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding qPCR Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Standards to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Diluted Sample to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Dispensing 384 well", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding qPCR Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Standards to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Diluted Sample to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Dispensing 384 well", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding qPCR Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Standards to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Diluted Sample to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Dispensing 384 well", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding qPCR Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Standards to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Diluted Sample to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Dispensing 384 well", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding qPCR Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Standards to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.24, + "z": 0.92 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Adding Diluted Sample to Mix", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.24, + "z": 11.405 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 4.0, + "volume": 12.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 12.5 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.405000000000001 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 11.405 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 2.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.891000000000005 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "--> Dispensing 384 well", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "==============================================", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 340.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 344.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 349.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 353.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 358.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 362.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 340.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 344.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 349.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 353.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 358.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 362.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 367.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 371.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 376.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 380.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 385.12, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 389.62, + "y": 290.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 367.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 371.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 376.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 380.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 385.12, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 389.62, + "y": 285.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 21.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 25.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 30.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 34.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 48.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 52.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 57.12, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 61.62, + "y": 397.49, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 160.0, + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 58.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 40.0, + "volume": 62.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.810000000000002 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.24, + "z": 3.9999999999999982 + }, + "volume": 62.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 39.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 43.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 48.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 52.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 57.12, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 15.219999999999999 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 40.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.68 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 61.62, + "y": 392.99, + "z": 4.54 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 0.2 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "Flex_P50MLeft_P1000MRight_None_2_15_ABRKAPALibraryQuantLongv2.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D1" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1", + "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul", + "location": { + "slotName": "D3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B1" + } + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1", + "loadName": "opentrons_96_aluminumblock_biorad_wellplate_200ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/corning_384_wellplate_112ul_flat/2", + "loadName": "corning_384_wellplate_112ul_flat", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/corning_384_wellplate_112ul_flat/2", + "loadName": "corning_384_wellplate_112ul_flat", + "location": { + "slotName": "A1" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "description": "OT3 ABR KAPA Library Quant v2", + "protocolName": "OT3 ABR KAPA Library Quant v2", + "source": "Protocol Library" + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p50_multi_flex" + }, + { + "mount": "right", + "pipetteName": "p1000_multi_flex" + } + ], + "robotType": "OT-3 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError][OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError][OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError].json new file mode 100644 index 00000000000..dfb4ce4eeea --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError][OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError].json @@ -0,0 +1,100 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Where is the point? (0,0) Origin is the point's location.", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Where is the point? (0,1) Y=1 and the point is on the y-axis.", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Where is the point? (1,0) X=1 and the point is on the x-axis.", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Where is the point? (1,1) The point is located somewhere else on the plane.", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 12 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_None_None_2_12_Python310SyntaxRobotAnalysisOnlyError.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.12", + "author": "Opentrons Engineering ", + "description": "Python 3.10 Only", + "protocolName": "🛠 3.10 only Python 🛠", + "source": "Software Testing Team" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_None_None_2_13_PythonSyntaxError][OT2_None_None_2_13_PythonSyntaxError].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_None_None_2_13_PythonSyntaxError][OT2_None_None_2_13_PythonSyntaxError].json new file mode 100644 index 00000000000..14d0e86d33f --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_None_None_2_13_PythonSyntaxError][OT2_None_None_2_13_PythonSyntaxError].json @@ -0,0 +1,87 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 13 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "No module named 'superspecialmagic'", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "UnexpectedProtocolError", + "wrappedErrors": [ + { + "detail": "ModuleNotFoundError: No module named 'superspecialmagic'", + "errorCode": "4000", + "errorInfo": { + "args": "(\"No module named 'superspecialmagic'\",)", + "class": "ModuleNotFoundError", + "msg": "No module named 'superspecialmagic'", + "name": "superspecialmagic", + "path": "None", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 90, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/legacy_wrappers.py\", line 173, in execute\n await to_thread.run_sync(run_protocol, protocol, context)\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 28, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(func, *args, cancellable=cancellable,\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 802, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 740, in run\n result = func(*args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 27, in run_protocol\n run_python(protocol, context)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 46, in run_python\n exec(proto.contents, new_globs)\n\n File \"OT2_None_None_2_13_PythonSyntaxError.py\", line 4, in \n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "OT2_None_None_2_13_PythonSyntaxError.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.13", + "author": "Opentrons Engineering ", + "description": "import superspecialmagic", + "protocolName": "bad import", + "source": "Software Testing Team" + }, + "modules": [], + "pipettes": [], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P1000SLeft_None_6_1_SimpleTransfer][OT2_P1000SLeft_None_6_1_SimpleTransfer].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P1000SLeft_None_6_1_SimpleTransfer][OT2_P1000SLeft_None_6_1_SimpleTransfer].json new file mode 100644 index 00000000000..8e5e354275c --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P1000SLeft_None_6_1_SimpleTransfer][OT2_P1000SLeft_None_6_1_SimpleTransfer].json @@ -0,0 +1,1907 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p1000_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 1000 µL", + "loadName": "opentrons_96_tiprack_1000ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-1000ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 97.47 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_1000ul", + "tipLength": 88, + "tipOverlap": 7.95 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.24, + "z": 9.47 + }, + "A10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.24, + "z": 9.47 + }, + "A11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.24, + "z": 9.47 + }, + "A12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.24, + "z": 9.47 + }, + "A2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.24, + "z": 9.47 + }, + "A3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.24, + "z": 9.47 + }, + "A4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.24, + "z": 9.47 + }, + "A5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.24, + "z": 9.47 + }, + "A6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.24, + "z": 9.47 + }, + "A7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.24, + "z": 9.47 + }, + "A8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.24, + "z": 9.47 + }, + "A9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.24, + "z": 9.47 + }, + "B1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.24, + "z": 9.47 + }, + "B10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.24, + "z": 9.47 + }, + "B11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.24, + "z": 9.47 + }, + "B12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.24, + "z": 9.47 + }, + "B2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.24, + "z": 9.47 + }, + "B3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.24, + "z": 9.47 + }, + "B4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.24, + "z": 9.47 + }, + "B5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.24, + "z": 9.47 + }, + "B6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.24, + "z": 9.47 + }, + "B7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.24, + "z": 9.47 + }, + "B8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.24, + "z": 9.47 + }, + "B9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.24, + "z": 9.47 + }, + "C1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.24, + "z": 9.47 + }, + "C10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.24, + "z": 9.47 + }, + "C11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.24, + "z": 9.47 + }, + "C12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.24, + "z": 9.47 + }, + "C2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.24, + "z": 9.47 + }, + "C3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.24, + "z": 9.47 + }, + "C4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.24, + "z": 9.47 + }, + "C5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.24, + "z": 9.47 + }, + "C6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.24, + "z": 9.47 + }, + "C7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.24, + "z": 9.47 + }, + "C8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.24, + "z": 9.47 + }, + "C9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.24, + "z": 9.47 + }, + "D1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.24, + "z": 9.47 + }, + "D10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.24, + "z": 9.47 + }, + "D11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.24, + "z": 9.47 + }, + "D12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.24, + "z": 9.47 + }, + "D2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.24, + "z": 9.47 + }, + "D3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.24, + "z": 9.47 + }, + "D4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.24, + "z": 9.47 + }, + "D5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.24, + "z": 9.47 + }, + "D6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.24, + "z": 9.47 + }, + "D7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.24, + "z": 9.47 + }, + "D8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.24, + "z": 9.47 + }, + "D9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.24, + "z": 9.47 + }, + "E1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.24, + "z": 9.47 + }, + "E10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.24, + "z": 9.47 + }, + "E11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.24, + "z": 9.47 + }, + "E12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.24, + "z": 9.47 + }, + "E2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.24, + "z": 9.47 + }, + "E3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.24, + "z": 9.47 + }, + "E4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.24, + "z": 9.47 + }, + "E5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.24, + "z": 9.47 + }, + "E6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.24, + "z": 9.47 + }, + "E7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.24, + "z": 9.47 + }, + "E8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.24, + "z": 9.47 + }, + "E9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.24, + "z": 9.47 + }, + "F1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.24, + "z": 9.47 + }, + "F10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.24, + "z": 9.47 + }, + "F11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.24, + "z": 9.47 + }, + "F12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.24, + "z": 9.47 + }, + "F2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.24, + "z": 9.47 + }, + "F3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.24, + "z": 9.47 + }, + "F4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.24, + "z": 9.47 + }, + "F5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.24, + "z": 9.47 + }, + "F6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.24, + "z": 9.47 + }, + "F7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.24, + "z": 9.47 + }, + "F8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.24, + "z": 9.47 + }, + "F9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.24, + "z": 9.47 + }, + "G1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.24, + "z": 9.47 + }, + "G10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.24, + "z": 9.47 + }, + "G11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.24, + "z": 9.47 + }, + "G12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.24, + "z": 9.47 + }, + "G2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.24, + "z": 9.47 + }, + "G3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.24, + "z": 9.47 + }, + "G4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.24, + "z": 9.47 + }, + "G5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.24, + "z": 9.47 + }, + "G6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.24, + "z": 9.47 + }, + "G7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.24, + "z": 9.47 + }, + "G8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.24, + "z": 9.47 + }, + "G9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.24, + "z": 9.47 + }, + "H1": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.24, + "z": 9.47 + }, + "H10": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.24, + "z": 9.47 + }, + "H11": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.24, + "z": 9.47 + }, + "H12": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.24, + "z": 9.47 + }, + "H2": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.24, + "z": 9.47 + }, + "H3": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.24, + "z": 9.47 + }, + "H4": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.24, + "z": 9.47 + }, + "H5": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.24, + "z": 9.47 + }, + "H6": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.24, + "z": 9.47 + }, + "H7": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.24, + "z": 9.47 + }, + "H8": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.24, + "z": 9.47 + }, + "H9": { + "depth": 88, + "diameter": 7.23, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.24, + "z": 9.47 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "gold", + "loadName": "axygen_1_reservoir_90ml", + "location": { + "slotName": "7" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Axygen", + "brandId": [ + "RES-SW1-LP" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Genomics-%26-Molecular-Biology/Automation-Consumables/Automation-Reservoirs/Axygen%C2%AE-Reagent-Reservoirs/p/RES-SW1-LP?clear=true" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 19.05 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Axygen 1 Well Reservoir 90 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "axygen_1_reservoir_90ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 12.42, + "shape": "rectangular", + "totalLiquidVolume": 90000, + "x": 63.88, + "xDimension": 106.76, + "y": 42.735, + "yDimension": 70.52, + "z": 6.63 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "SILVER", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "8" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "round", + "loadName": "corning_6_wellplate_16.8ml_flat", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Corning", + "brandId": [ + "3335", + "3471", + "3506", + "3516" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3335" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 20.27 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "A2", + "A3", + "B1", + "B2", + "B3" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Corning 6 Well Plate 16.8 mL Flat", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1" + ], + [ + "A2", + "B2" + ], + [ + "A3", + "B3" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "corning_6_wellplate_16.8ml_flat" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 62.28, + "z": 2.87 + }, + "A2": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 62.28, + "z": 2.87 + }, + "A3": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 103, + "y": 62.28, + "z": 2.87 + }, + "B1": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 23.16, + "z": 2.87 + }, + "B2": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 23.16, + "z": 2.87 + }, + "B3": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 103, + "y": 23.16, + "z": 2.87 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A10": 1000.0, + "A5": 1000.0, + "A6": 1000.0, + "A7": 1000.0, + "A8": 1000.0, + "A9": 1000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 5000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 97.47 + }, + "tipDiameter": 7.23, + "tipLength": 76.5, + "tipVolume": 1000.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 137.35, + "volume": 400.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.735, + "z": 7.63 + }, + "volume": 400.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 137.35, + "volume": 400.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 328.88, + "y": 23.16, + "z": 3.37 + }, + "volume": 400.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 137.35, + "volume": 400.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.735, + "z": 7.63 + }, + "volume": 400.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 137.35, + "volume": 400.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 368.0, + "y": 62.28, + "z": 3.37 + }, + "volume": 400.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [], + "files": [ + { + "name": "OT2_P1000SLeft_None_6_1_SimpleTransfer.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_1000ul/1", + "displayName": "Opentrons 96 Tip Rack 1000 µL", + "loadName": "opentrons_96_tiprack_1000ul", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/axygen_1_reservoir_90ml/1", + "displayName": "gold", + "loadName": "axygen_1_reservoir_90ml", + "location": { + "slotName": "7" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "SILVER", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "8" + } + }, + { + "definitionUri": "opentrons/corning_6_wellplate_16.8ml_flat/1", + "displayName": "round", + "loadName": "corning_6_wellplate_16.8ml_flat", + "location": { + "slotName": "3" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "GOLD" + }, + { + "description": "", + "displayColor": "#ffd600", + "displayName": "SILVER" + } + ], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "Need Pipette", + "subcategory": null, + "tags": [] + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p1000_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P10S_P300M_TC1_TM_MM_2_11_Swift][OT2_P10S_P300M_TC1_TM_MM_2_11_Swift].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P10S_P300M_TC1_TM_MM_2_11_Swift][OT2_P10S_P300M_TC1_TM_MM_2_11_Swift].json new file mode 100644 index 00000000000..c23effc8a2a --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P10S_P300M_TC1_TM_MM_2_11_Swift][OT2_P10S_P300M_TC1_TM_MM_2_11_Swift].json @@ -0,0 +1,13955 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p10_single" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "4" + }, + "model": "temperatureModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV2" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": -0.15, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV1", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "temperatureModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 42 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Generic 2 mL Screwcap", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "B1", + "B2", + "B3", + "B4", + "B5", + "B6", + "C1", + "C2", + "C3", + "C4", + "C5", + "C6", + "D1", + "D2", + "D3", + "D4", + "D5", + "D6" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1" + ], + [ + "A2", + "B2", + "C2", + "D2" + ], + [ + "A3", + "B3", + "C3", + "D3" + ], + [ + "A4", + "B4", + "C4", + "D4" + ], + [ + "A5", + "B5", + "C5", + "D5" + ], + [ + "A6", + "B6", + "C6", + "D6" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.63, + "z": 6.7 + }, + "A2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.63, + "z": 6.7 + }, + "A3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.63, + "z": 6.7 + }, + "A4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.63, + "z": 6.7 + }, + "A5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.63, + "z": 6.7 + }, + "A6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.63, + "z": 6.7 + }, + "B1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.38, + "z": 6.7 + }, + "B2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.38, + "z": 6.7 + }, + "B3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.38, + "z": 6.7 + }, + "B4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.38, + "z": 6.7 + }, + "B5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.38, + "z": 6.7 + }, + "B6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.38, + "z": 6.7 + }, + "C1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.13, + "z": 6.7 + }, + "C2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.13, + "z": 6.7 + }, + "C3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.13, + "z": 6.7 + }, + "C4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.13, + "z": 6.7 + }, + "C5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.13, + "z": 6.7 + }, + "C6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.13, + "z": 6.7 + }, + "D1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.88, + "z": 6.7 + }, + "D2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.88, + "z": 6.7 + }, + "D3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.88, + "z": 6.7 + }, + "D4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.88, + "z": 6.7 + }, + "D5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.88, + "z": 6.7 + }, + "D6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.88, + "z": 6.7 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [ + "thermocyclerModuleV1" + ], + "dimensions": { + "bareOverallHeight": 98.0, + "lidHeight": 37.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": 0.0, + "y": 82.56, + "z": 97.8 + }, + "model": "thermocyclerModuleV1", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "thermocyclerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Temperature Module temperature to 40.0 °C (rounded off to nearest integer)", + "legacyCommandType": "command.TEMPDECK_SET_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 30.0 °C", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to B2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to C2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to D2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to E2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to F2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to G2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to H2 of NEST 96 Well Plate 100 µL PCR Full Skirt on Thermocycler Module GEN1 on 7", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.5 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Closing Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_CLOSE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 70.0 °C", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 32.0 °C with a hold time of 1.0 minutes and 0 seconds", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 64.5 °C with a hold time of 1.0 minutes and 0 seconds", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 4.0 °C", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Thermocycler lid heating", + "legacyCommandType": "command.THERMOCYCLER_DEACTIVATE_LID" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Opening Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_OPEN" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Homing pipette plunger on mount right", + "legacyCommandType": "command.HOME" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 10.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 94.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 75.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 75.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 75.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 75.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 10.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A2 of NEST 96 Deep Well Plate 2mL on Magnetic Module GEN2 on 1", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 10.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 94.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 94.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 75.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 30.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 75.0, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 75.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 30.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 10.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 94.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 35.910000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 8.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 4.0 °C", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler lid temperature to 105.0 °C", + "legacyCommandType": "command.THERMOCYCLER_SET_LID_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Closing Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_CLOSE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 97.0 °C with a hold time of 5 seconds", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Thermocycler starting 5 repetitions of cycle composed of the following steps: [{'temperature': 97, 'hold_time_seconds': 5}, {'temperature': 59.5, 'hold_time_seconds': 5}, {'temperature': 67.3, 'hold_time_seconds': 5}]", + "legacyCommandType": "command.THERMOCYCLER_EXECUTE_PROFILE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Opening Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_OPEN" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 10.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 50.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 94.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Temperature Module", + "legacyCommandType": "command.TEMPDECK_DEACTIVATE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 11 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P10S_P300M_TC1_TM_MM_2_11_Swift.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/1", + "loadName": "nest_96_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1", + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.11" + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + { + "location": { + "slotName": "4" + }, + "model": "temperatureModuleV1" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p10_single" + }, + { + "mount": "right", + "pipetteName": "p300_multi_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20SRight_None_6_1_SimpleTransferError][OT2_P20SRight_None_6_1_SimpleTransferError].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20SRight_None_6_1_SimpleTransferError][OT2_P20SRight_None_6_1_SimpleTransferError].json new file mode 100644 index 00000000000..eb988443985 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20SRight_None_6_1_SimpleTransferError][OT2_P20SRight_None_6_1_SimpleTransferError].json @@ -0,0 +1,1849 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "gold", + "loadName": "axygen_1_reservoir_90ml", + "location": { + "slotName": "7" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Axygen", + "brandId": [ + "RES-SW1-LP" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Genomics-%26-Molecular-Biology/Automation-Consumables/Automation-Reservoirs/Axygen%C2%AE-Reagent-Reservoirs/p/RES-SW1-LP?clear=true" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 19.05 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Axygen 1 Well Reservoir 90 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "axygen_1_reservoir_90ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 12.42, + "shape": "rectangular", + "totalLiquidVolume": 90000, + "x": 63.88, + "xDimension": 106.76, + "y": 42.735, + "yDimension": 70.52, + "z": 6.63 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "SILVER", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "8" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "round", + "loadName": "corning_6_wellplate_16.8ml_flat", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Corning", + "brandId": [ + "3335", + "3471", + "3506", + "3516" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3335" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 20.27 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "A2", + "A3", + "B1", + "B2", + "B3" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Corning 6 Well Plate 16.8 mL Flat", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1" + ], + [ + "A2", + "B2" + ], + [ + "A3", + "B3" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "corning_6_wellplate_16.8ml_flat" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 62.28, + "z": 2.87 + }, + "A2": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 62.28, + "z": 2.87 + }, + "A3": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 103, + "y": 62.28, + "z": 2.87 + }, + "B1": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 24.76, + "y": 23.16, + "z": 2.87 + }, + "B2": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 63.88, + "y": 23.16, + "z": 2.87 + }, + "B3": { + "depth": 17.4, + "diameter": 35.43, + "shape": "circular", + "totalLiquidVolume": 16800, + "x": 103, + "y": 23.16, + "z": 2.87 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A10": 1000.0, + "A5": 1000.0, + "A6": 1000.0, + "A7": 1000.0, + "A8": 1000.0, + "A9": 1000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 5000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "error": { + "detail": "Cannot aspirate more than pipette max volume", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidPipettingVolumeError", + "wrappedErrors": [] + }, + "params": { + "flowRate": 3.78, + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "status": "failed" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "status": "failed" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "status": "failed" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [ + { + "detail": "Cannot aspirate more than pipette max volume", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "InvalidPipettingVolumeError", + "wrappedErrors": [] + } + ], + "files": [ + { + "name": "OT2_P20SRight_None_6_1_SimpleTransferError.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/axygen_1_reservoir_90ml/1", + "displayName": "gold", + "loadName": "axygen_1_reservoir_90ml", + "location": { + "slotName": "7" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "SILVER", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "8" + } + }, + { + "definitionUri": "opentrons/corning_6_wellplate_16.8ml_flat/1", + "displayName": "round", + "loadName": "corning_6_wellplate_16.8ml_flat", + "location": { + "slotName": "3" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "1" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "GOLD" + }, + { + "description": "", + "displayColor": "#ffd600", + "displayName": "SILVER" + } + ], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "Have Pipette", + "subcategory": null, + "tags": [] + }, + "modules": [], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_None_2_7_Walkthrough][OT2_P20S_None_2_7_Walkthrough].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_None_2_7_Walkthrough][OT2_P20S_None_2_7_Walkthrough].json new file mode 100644 index 00000000000..8400c75fe71 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_None_2_7_Walkthrough][OT2_P20S_None_2_7_Walkthrough].json @@ -0,0 +1,4282 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_200ul_flat", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "701011" + ], + "links": [ + "https://www.nest-biotech.com/cell-culture-plates/59415537.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.56, + "yDimension": 85.36, + "zDimension": 14.3 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 200 µL Flat", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_96_wellplate_200ul_flat" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 74.18, + "z": 3.5 + }, + "A10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 74.18, + "z": 3.5 + }, + "A11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 74.18, + "z": 3.5 + }, + "A12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 74.18, + "z": 3.5 + }, + "A2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 74.18, + "z": 3.5 + }, + "A3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 74.18, + "z": 3.5 + }, + "A4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 74.18, + "z": 3.5 + }, + "A5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 74.18, + "z": 3.5 + }, + "A6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 74.18, + "z": 3.5 + }, + "A7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 74.18, + "z": 3.5 + }, + "A8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 74.18, + "z": 3.5 + }, + "A9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 74.18, + "z": 3.5 + }, + "B1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 65.18, + "z": 3.5 + }, + "B10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 65.18, + "z": 3.5 + }, + "B11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 65.18, + "z": 3.5 + }, + "B12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 65.18, + "z": 3.5 + }, + "B2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 65.18, + "z": 3.5 + }, + "B3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 65.18, + "z": 3.5 + }, + "B4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 65.18, + "z": 3.5 + }, + "B5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 65.18, + "z": 3.5 + }, + "B6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 65.18, + "z": 3.5 + }, + "B7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 65.18, + "z": 3.5 + }, + "B8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 65.18, + "z": 3.5 + }, + "B9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 65.18, + "z": 3.5 + }, + "C1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 56.18, + "z": 3.5 + }, + "C10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 56.18, + "z": 3.5 + }, + "C11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 56.18, + "z": 3.5 + }, + "C12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 56.18, + "z": 3.5 + }, + "C2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 56.18, + "z": 3.5 + }, + "C3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 56.18, + "z": 3.5 + }, + "C4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 56.18, + "z": 3.5 + }, + "C5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 56.18, + "z": 3.5 + }, + "C6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 56.18, + "z": 3.5 + }, + "C7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 56.18, + "z": 3.5 + }, + "C8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 56.18, + "z": 3.5 + }, + "C9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 56.18, + "z": 3.5 + }, + "D1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 47.18, + "z": 3.5 + }, + "D10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 47.18, + "z": 3.5 + }, + "D11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 47.18, + "z": 3.5 + }, + "D12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 47.18, + "z": 3.5 + }, + "D2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 47.18, + "z": 3.5 + }, + "D3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 47.18, + "z": 3.5 + }, + "D4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 47.18, + "z": 3.5 + }, + "D5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 47.18, + "z": 3.5 + }, + "D6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 47.18, + "z": 3.5 + }, + "D7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 47.18, + "z": 3.5 + }, + "D8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 47.18, + "z": 3.5 + }, + "D9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 47.18, + "z": 3.5 + }, + "E1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 38.18, + "z": 3.5 + }, + "E10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 38.18, + "z": 3.5 + }, + "E11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 38.18, + "z": 3.5 + }, + "E12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 38.18, + "z": 3.5 + }, + "E2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 38.18, + "z": 3.5 + }, + "E3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 38.18, + "z": 3.5 + }, + "E4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 38.18, + "z": 3.5 + }, + "E5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 38.18, + "z": 3.5 + }, + "E6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 38.18, + "z": 3.5 + }, + "E7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 38.18, + "z": 3.5 + }, + "E8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 38.18, + "z": 3.5 + }, + "E9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 38.18, + "z": 3.5 + }, + "F1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 29.18, + "z": 3.5 + }, + "F10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 29.18, + "z": 3.5 + }, + "F11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 29.18, + "z": 3.5 + }, + "F12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 29.18, + "z": 3.5 + }, + "F2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 29.18, + "z": 3.5 + }, + "F3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 29.18, + "z": 3.5 + }, + "F4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 29.18, + "z": 3.5 + }, + "F5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 29.18, + "z": 3.5 + }, + "F6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 29.18, + "z": 3.5 + }, + "F7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 29.18, + "z": 3.5 + }, + "F8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 29.18, + "z": 3.5 + }, + "F9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 29.18, + "z": 3.5 + }, + "G1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 20.18, + "z": 3.5 + }, + "G10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 20.18, + "z": 3.5 + }, + "G11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 20.18, + "z": 3.5 + }, + "G12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 20.18, + "z": 3.5 + }, + "G2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 20.18, + "z": 3.5 + }, + "G3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 20.18, + "z": 3.5 + }, + "G4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 20.18, + "z": 3.5 + }, + "G5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 20.18, + "z": 3.5 + }, + "G6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 20.18, + "z": 3.5 + }, + "G7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 20.18, + "z": 3.5 + }, + "G8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 20.18, + "z": 3.5 + }, + "G9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 20.18, + "z": 3.5 + }, + "H1": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.28, + "y": 11.18, + "z": 3.5 + }, + "H10": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.28, + "y": 11.18, + "z": 3.5 + }, + "H11": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.28, + "y": 11.18, + "z": 3.5 + }, + "H12": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.28, + "y": 11.18, + "z": 3.5 + }, + "H2": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.28, + "y": 11.18, + "z": 3.5 + }, + "H3": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.28, + "y": 11.18, + "z": 3.5 + }, + "H4": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.28, + "y": 11.18, + "z": 3.5 + }, + "H5": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.28, + "y": 11.18, + "z": 3.5 + }, + "H6": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.28, + "y": 11.18, + "z": 3.5 + }, + "H7": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.28, + "y": 11.18, + "z": 3.5 + }, + "H8": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.28, + "y": 11.18, + "z": 3.5 + }, + "H9": { + "depth": 10.8, + "diameter": 6.85, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.28, + "y": 11.18, + "z": 3.5 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of NEST 96 Well Plate 200 µL Flat on 1", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 3.78, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of NEST 96 Well Plate 200 µL Flat on 1", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 4.444444444444445, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 4.444444444444445 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 6.666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 5.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 4.444444444444445, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 4.444444444444445 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 6.666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 5.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 4.444444444444445, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 4.444444444444445 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 6.666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 5.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333334, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333334 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 2.5, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 2.5 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 2.5, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 2.5 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 5.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 13.333333333333332, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333332 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 14.333333333333332, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 14.333333333333332 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 15.12, + "volume": 1.6666666666666667, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 1.6666666666666667 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 7 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P20S_None_2_7_Walkthrough.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_200ul_flat/1", + "loadName": "nest_96_wellplate_200ul_flat", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "2" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.7", + "author": "Opentrons ", + "protocolName": "OT-2 Guided Walk-through", + "source": "Custom Protocol Request" + }, + "modules": [], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error][OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error][OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error].json new file mode 100644 index 00000000000..b4d6b231532 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error][OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error].json @@ -0,0 +1,5323 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 42.25 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deepwell Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL (1)", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "1", + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Thermo Scientific", + "brandId": [ + "AB2396" + ], + "links": [ + "https://www.fishersci.com/shop/products/armadillo-96-well-pcr-plate-1/AB2396" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Armadillo 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0, + "A2": 100.0, + "A3": 100.0, + "B1": 100.0, + "B2": 100.0, + "B3": 100.0, + "C1": 100.0, + "C2": 100.0, + "C3": 100.0, + "D1": 100.0, + "D2": 100.0, + "D3": 100.0, + "E1": 100.0, + "E2": 100.0, + "E3": 100.0, + "F1": 100.0, + "F2": 100.0, + "F3": 100.0, + "G1": 100.0, + "G2": 100.0, + "G3": 100.0, + "H1": 100.0, + "H2": 100.0, + "H3": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [], + "files": [ + { + "name": "OT2_P20S_P300M_HS_6_1_HS_WithCollision_Error.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1", + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL (1)", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/armadillo_96_wellplate_200ul_pcr_full_skirt/1", + "displayName": "1", + "loadName": "armadillo_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "5" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "Water" + } + ], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "HS Collision", + "subcategory": null, + "tags": [] + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_single_gen2" + }, + { + "mount": "right", + "pipetteName": "p300_multi_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid][OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid][OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid].json new file mode 100644 index 00000000000..ebd39948382 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid][OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid].json @@ -0,0 +1,10536 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Filter Tip Rack 20 µL", + "loadName": "opentrons_96_filtertiprack_20ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Filter Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_filtertiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 3.29 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 74.26, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 74.26, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 74.26, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 74.26, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 74.26, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 74.26, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 74.26, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 74.26, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 74.26, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 74.26, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 74.26, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 74.26, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 65.26, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 65.26, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 65.26, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 65.26, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 65.26, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 65.26, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 65.26, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 65.26, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 65.26, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 65.26, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 65.26, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 65.26, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 56.26, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 56.26, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 56.26, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 56.26, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 56.26, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 56.26, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 56.26, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 56.26, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 56.26, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 56.26, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 56.26, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 56.26, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 47.26, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 47.26, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 47.26, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 47.26, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 47.26, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 47.26, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 47.26, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 47.26, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 47.26, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 47.26, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 47.26, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 47.26, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 38.26, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 38.26, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 38.26, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 38.26, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 38.26, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 38.26, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 38.26, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 38.26, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 38.26, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 38.26, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 38.26, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 38.26, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 29.26, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 29.26, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 29.26, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 29.26, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 29.26, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 29.26, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 29.26, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 29.26, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 29.26, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 29.26, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 29.26, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 29.26, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 20.26, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 20.26, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 20.26, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 20.26, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 20.26, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 20.26, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 20.26, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 20.26, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 20.26, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 20.26, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 20.26, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 20.26, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 11.26, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 11.26, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 11.26, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 11.26, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 11.26, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 11.26, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 11.26, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 11.26, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 11.26, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 11.26, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 11.26, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 11.26, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 15 Tube Rack with NEST 15 mL Conical", + "loadName": "opentrons_15_tuberack_nest_15ml_conical", + "location": { + "slotName": "10" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 124.65 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "601052" + ], + "links": [ + "https://www.nest-biotech.com/centrifuge-tube/59282837.html" + ] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "NEST 15x15 mL Conical", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "B1", + "B2", + "B3", + "B4", + "B5", + "C1", + "C2", + "C3", + "C4", + "C5" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Opentrons 15 Tube Rack with NEST 15 mL Conical", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1" + ], + [ + "A2", + "B2", + "C2" + ], + [ + "A3", + "B3", + "C3" + ], + [ + "A4", + "B4", + "C4" + ], + [ + "A5", + "B5", + "C5" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_15_tuberack_nest_15ml_conical" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 67.74, + "z": 6.85 + }, + "A2": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 67.74, + "z": 6.85 + }, + "A3": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 67.74, + "z": 6.85 + }, + "A4": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 67.74, + "z": 6.85 + }, + "A5": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 67.74, + "z": 6.85 + }, + "B1": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 42.74, + "z": 6.85 + }, + "B2": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 42.74, + "z": 6.85 + }, + "B3": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 42.74, + "z": 6.85 + }, + "B4": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 42.74, + "z": 6.85 + }, + "B5": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 42.74, + "z": 6.85 + }, + "C1": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 17.74, + "z": 6.85 + }, + "C2": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 17.74, + "z": 6.85 + }, + "C3": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 17.74, + "z": 6.85 + }, + "C4": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 17.74, + "z": 6.85 + }, + "C5": { + "depth": 117.8, + "diameter": 15.5, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 17.74, + "z": 6.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", + "loadName": "biorad_96_wellplate_200ul_pcr", + "location": { + "slotName": "8" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "hsp9601" + ], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.06 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "biorad_96_wellplate_200ul_pcr", + "magneticModuleEngageHeight": 18 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.25 + }, + "A10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.25 + }, + "A11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.25 + }, + "A12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.25 + }, + "A2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.25 + }, + "A3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.25 + }, + "A4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.25 + }, + "A5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.25 + }, + "A6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.25 + }, + "A7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.25 + }, + "A8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.25 + }, + "A9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.25 + }, + "B1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.25 + }, + "B10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.25 + }, + "B11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.25 + }, + "B12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.25 + }, + "B2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.25 + }, + "B3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.25 + }, + "B4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.25 + }, + "B5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.25 + }, + "B6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.25 + }, + "B7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.25 + }, + "B8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.25 + }, + "B9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.25 + }, + "C1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.25 + }, + "C10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.25 + }, + "C11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.25 + }, + "C12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.25 + }, + "C2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.25 + }, + "C3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.25 + }, + "C4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.25 + }, + "C5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.25 + }, + "C6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.25 + }, + "C7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.25 + }, + "C8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.25 + }, + "C9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.25 + }, + "D1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.25 + }, + "D10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.25 + }, + "D11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.25 + }, + "D12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.25 + }, + "D2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.25 + }, + "D3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.25 + }, + "D4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.25 + }, + "D5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.25 + }, + "D6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.25 + }, + "D7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.25 + }, + "D8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.25 + }, + "D9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.25 + }, + "E1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.25 + }, + "E10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.25 + }, + "E11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.25 + }, + "E12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.25 + }, + "E2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.25 + }, + "E3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.25 + }, + "E4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.25 + }, + "E5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.25 + }, + "E6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.25 + }, + "E7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.25 + }, + "E8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.25 + }, + "E9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.25 + }, + "F1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.25 + }, + "F10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.25 + }, + "F11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.25 + }, + "F12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.25 + }, + "F2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.25 + }, + "F3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.25 + }, + "F4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.25 + }, + "F5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.25 + }, + "F6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.25 + }, + "F7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.25 + }, + "F8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.25 + }, + "F9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.25 + }, + "G1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.25 + }, + "G10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.25 + }, + "G11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.25 + }, + "G12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.25 + }, + "G2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.25 + }, + "G3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.25 + }, + "G4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.25 + }, + "G5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.25 + }, + "G6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.25 + }, + "G7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.25 + }, + "G8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.25 + }, + "G9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.25 + }, + "H1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.25 + }, + "H10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.25 + }, + "H11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.25 + }, + "H12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.25 + }, + "H2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.25 + }, + "H3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.25 + }, + "H4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.25 + }, + "H5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.25 + }, + "H6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.25 + }, + "H7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.25 + }, + "H8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.25 + }, + "H9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "2", + "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 124.35 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "Falcon", + "brandId": [ + "352095", + "352096", + "352097", + "352099", + "352196" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Falcon 6x15 mL Conical", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "B1", + "B2", + "C1", + "C2" + ] + }, + { + "brand": { + "brand": "Falcon", + "brandId": [ + "352070", + "352098" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Falcon 4x50 mL Conical", + "wellBottomShape": "v" + }, + "wells": [ + "A3", + "A4", + "B3", + "B4" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Opentrons 10 Tube Rack with Falcon 4x50 mL, 6x15 mL Conical", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1" + ], + [ + "A2", + "B2", + "C2" + ], + [ + "A3", + "B3" + ], + [ + "A4", + "B4" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 67.75, + "z": 6.85 + }, + "A2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 67.75, + "z": 6.85 + }, + "A3": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 71.38, + "y": 60.25, + "z": 7.3 + }, + "A4": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 106.38, + "y": 60.25, + "z": 7.3 + }, + "B1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 42.75, + "z": 6.85 + }, + "B2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 42.75, + "z": 6.85 + }, + "B3": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 71.38, + "y": 25.25, + "z": 7.3 + }, + "B4": { + "depth": 113, + "diameter": 27.81, + "shape": "circular", + "totalLiquidVolume": 50000, + "x": 106.38, + "y": 25.25, + "z": 7.3 + }, + "C1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 17.75, + "z": 6.85 + }, + "C2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 17.75, + "z": 6.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B3": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B2": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "B1": 200.0, + "C1": 200.0, + "C2": 200.0, + "C3": 200.0, + "C4": 200.0, + "C5": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A4": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A3": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 200.0, + "B4": 200.0, + "B5": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 255.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 146.88, + "y": 246.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 146.88, + "y": 237.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 146.88, + "y": 228.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 146.88, + "y": 219.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 146.88, + "y": 210.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 146.88, + "y": 201.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 146.88, + "y": 192.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 155.88, + "y": 255.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 155.88, + "y": 246.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 155.88, + "y": 237.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 155.88, + "y": 228.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 155.88, + "y": 219.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 155.88, + "y": 210.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 155.88, + "y": 201.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 155.88, + "y": 192.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 164.88, + "y": 255.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 164.88, + "y": 246.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 164.88, + "y": 237.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 164.88, + "y": 228.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 164.88, + "y": 219.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 164.88, + "y": 210.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 164.88, + "y": 201.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 63.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 164.88, + "y": 192.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 173.88, + "y": 255.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 173.88, + "y": 246.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 173.88, + "y": 237.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 173.88, + "y": 228.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 173.88, + "y": 219.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 173.88, + "y": 210.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 173.88, + "y": 201.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 88.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 173.88, + "y": 192.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 182.88, + "y": 255.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 182.88, + "y": 246.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 182.88, + "y": 237.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 182.88, + "y": 228.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 182.88, + "y": 219.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 182.88, + "y": 210.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 182.88, + "y": 201.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 113.88, + "y": 339.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 182.88, + "y": 192.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 191.88, + "y": 255.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 191.88, + "y": 246.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 191.88, + "y": 237.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 191.88, + "y": 228.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 191.88, + "y": 219.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 191.88, + "y": 210.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 191.88, + "y": 201.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 13.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 191.88, + "y": 192.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 200.88, + "y": 255.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 200.88, + "y": 246.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 200.88, + "y": 237.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 200.88, + "y": 228.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 200.88, + "y": 219.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 200.88, + "y": 210.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 200.88, + "y": 201.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.88, + "y": 314.24, + "z": 7.85 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 200.88, + "y": 192.24, + "z": 1.75 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 255.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 146.88, + "y": 246.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 146.88, + "y": 237.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 146.88, + "y": 228.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 146.88, + "y": 192.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 155.88, + "y": 255.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 155.88, + "y": 246.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 164.88, + "y": 237.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 164.88, + "y": 228.24, + "z": 2.25 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 278.88, + "y": 158.25, + "z": 7.35 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [], + "files": [ + { + "name": "OT2_P20S_P300M_NoMods_6_1_TransferReTransferLiquid.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_filtertiprack_20ul/1", + "displayName": "Opentrons 96 Filter Tip Rack 20 µL", + "loadName": "opentrons_96_filtertiprack_20ul", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_15_tuberack_nest_15ml_conical/1", + "displayName": "Opentrons 15 Tube Rack with NEST 15 mL Conical", + "loadName": "opentrons_15_tuberack_nest_15ml_conical", + "location": { + "slotName": "10" + } + }, + { + "definitionUri": "opentrons/biorad_96_wellplate_200ul_pcr/1", + "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", + "loadName": "biorad_96_wellplate_200ul_pcr", + "location": { + "slotName": "8" + } + }, + { + "definitionUri": "opentrons/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/1", + "displayName": "2", + "loadName": "opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical", + "location": { + "slotName": "6" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "1" + }, + { + "description": "", + "displayColor": "#ffd600", + "displayName": "2" + }, + { + "description": "", + "displayColor": "#9dffd8", + "displayName": "3" + }, + { + "description": "", + "displayColor": "#ff9900", + "displayName": "4" + }, + { + "description": "", + "displayColor": "#50d5ff", + "displayName": "5" + }, + { + "description": "", + "displayColor": "#ff80f5", + "displayName": "6" + }, + { + "description": "", + "displayColor": "#7eff42", + "displayName": "7" + }, + { + "description": "", + "displayColor": "#ff4f4f", + "displayName": "8" + } + ], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "Transfer- Multi liquid (retransfer)", + "subcategory": null, + "tags": [] + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p20_single_gen2" + }, + { + "mount": "right", + "pipetteName": "p300_multi_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300MLeft_MM_TM_2_4_Zymo][OT2_P300MLeft_MM_TM_2_4_Zymo].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300MLeft_MM_TM_2_4_Zymo][OT2_P300MLeft_MM_TM_2_4_Zymo].json new file mode 100644 index 00000000000..d14082ef779 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300MLeft_MM_TM_2_4_Zymo][OT2_P300MLeft_MM_TM_2_4_Zymo].json @@ -0,0 +1,68439 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "6" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "deepwell plate", + "loadName": "nest_96_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Liquid Waste", + "loadName": "nest_1_reservoir_195ml", + "location": { + "slotName": "9" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360103" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178416.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 1 Well Reservoir 195 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_1_reservoir_195ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 25, + "shape": "rectangular", + "totalLiquidVolume": 195000, + "x": 63.88, + "xDimension": 106.8, + "y": 42.74, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "reagent reservoir 2", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "reagent reservoir 1", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "7" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "8" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "10" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "11" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Temperature Module temperature to 4.0 °C (rounded off to nearest integer)", + "legacyCommandType": "command.TEMPDECK_SET_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 3.333333333333343, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 3.333333333333343 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 13.333333333333343, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333343 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 3.333333333333343, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 3.333333333333343 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 13.333333333333343, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333343 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 3.333333333333343, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 3.333333333333343 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 13.333333333333343, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 13.333333333333343 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 50.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "mix for 10 minutes off-deck in a heatershaker" + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 7 minutes and 0.0 seconds. Incubating on MagDeck for 7 minutes.", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 150.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 7 minutes and 0.0 seconds. Incubating on MagDeck for 7 minutes.", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 7 minutes and 0.0 seconds. Incubating on MagDeck for 7 minutes.", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 7 minutes and 0.0 seconds. Incubating on MagDeck for 7 minutes.", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 7 minutes and 0.0 seconds. Incubating on MagDeck for 7 minutes.", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Incubating for 10 minutes for DNase 1 treatment with occasional mixing." + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 31.000000000000004, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 6.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 6.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 16.666666666666657, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 16.666666666666657 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Incubating for 10 minutes with occasional mixing for stop reaction" + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 7 minutes and 0.0 seconds. Incubating on MagDeck for 7 minutes.", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 166.66666666666666, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 166.66666666666666 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 176.66666666666666, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 176.66666666666666 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 166.66666666666666, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 166.66666666666666 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 176.66666666666666, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 176.66666666666666 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 166.66666666666666, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 166.66666666666666 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 176.66666666666666, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 176.66666666666666 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 30.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 10 minutes and 0.0 seconds. dry beads for 10 minute", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to A1 of deepwell plate on Magnetic Module GEN2 on 6", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 7 minutes and 0.0 seconds. Incubating on MagDeck for 7 minutes.", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 500.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 4 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300MLeft_MM_TM_2_4_Zymo.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/1", + "displayName": "deepwell plate", + "loadName": "nest_96_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {} + }, + { + "definitionUri": "opentrons/nest_1_reservoir_195ml/1", + "displayName": "Liquid Waste", + "loadName": "nest_1_reservoir_195ml", + "location": { + "slotName": "9" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "reagent reservoir 2", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "reagent reservoir 1", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "7" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "8" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "10" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "11" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "200µl filtertiprack", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.4", + "author": "Opentrons ", + "protocolName": "Zymo Direct-zol96 Magbead RNA" + }, + "modules": [ + { + "location": { + "slotName": "6" + }, + "model": "magneticModuleV2" + }, + { + "location": { + "slotName": "1" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume][OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume][OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume].json new file mode 100644 index 00000000000..ac69641482d --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume][OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume].json @@ -0,0 +1,2837 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "setRailLights", + "params": { + "on": true + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 20.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_2_16_aspirateDispenseMix0Volume.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + } + ], + "liquids": [ + { + "description": "H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + } + ], + "metadata": { + "author": "Opentrons Engineering ", + "protocolName": "QA Protocol - API 2.16 - Aspirate Dispense Mix with 0 Volume", + "source": "Software Testing Team" + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_HS_6_1_Smoke620release][OT2_P300M_P20S_HS_6_1_Smoke620release].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_HS_6_1_Smoke620release][OT2_P300M_P20S_HS_6_1_Smoke620release].json new file mode 100644 index 00000000000..1fa8db23b06 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_HS_6_1_Smoke620release][OT2_P300M_P20S_HS_6_1_Smoke620release].json @@ -0,0 +1,8465 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 42.25 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deepwell Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Single", + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 42 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Generic 2 mL Screwcap", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "B1", + "B2", + "B3", + "B4", + "B5", + "B6", + "C1", + "C2", + "C3", + "C4", + "C5", + "C6", + "D1", + "D2", + "D3", + "D4", + "D5", + "D6" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1" + ], + [ + "A2", + "B2", + "C2", + "D2" + ], + [ + "A3", + "B3", + "C3", + "D3" + ], + [ + "A4", + "B4", + "C4", + "D4" + ], + [ + "A5", + "B5", + "C5", + "D5" + ], + [ + "A6", + "B6", + "C6", + "D6" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.63, + "z": 6.7 + }, + "A2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.63, + "z": 6.7 + }, + "A3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.63, + "z": 6.7 + }, + "A4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.63, + "z": 6.7 + }, + "A5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.63, + "z": 6.7 + }, + "A6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.63, + "z": 6.7 + }, + "B1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.38, + "z": 6.7 + }, + "B2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.38, + "z": 6.7 + }, + "B3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.38, + "z": 6.7 + }, + "B4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.38, + "z": 6.7 + }, + "B5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.38, + "z": 6.7 + }, + "B6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.38, + "z": 6.7 + }, + "C1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.13, + "z": 6.7 + }, + "C2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.13, + "z": 6.7 + }, + "C3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.13, + "z": 6.7 + }, + "C4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.13, + "z": 6.7 + }, + "C5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.13, + "z": 6.7 + }, + "C6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.13, + "z": 6.7 + }, + "D1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.88, + "z": 6.7 + }, + "D2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.88, + "z": 6.7 + }, + "D3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.88, + "z": 6.7 + }, + "D4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.88, + "z": 6.7 + }, + "D5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.88, + "z": 6.7 + }, + "D6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.88, + "z": 6.7 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Multi", + "loadName": "biorad_96_wellplate_200ul_pcr", + "location": { + "slotName": "9" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "hsp9601" + ], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.06 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "biorad_96_wellplate_200ul_pcr", + "magneticModuleEngageHeight": 18 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.25 + }, + "A10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.25 + }, + "A11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.25 + }, + "A12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.25 + }, + "A2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.25 + }, + "A3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.25 + }, + "A4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.25 + }, + "A5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.25 + }, + "A6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.25 + }, + "A7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.25 + }, + "A8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.25 + }, + "A9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.25 + }, + "B1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.25 + }, + "B10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.25 + }, + "B11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.25 + }, + "B12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.25 + }, + "B2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.25 + }, + "B3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.25 + }, + "B4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.25 + }, + "B5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.25 + }, + "B6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.25 + }, + "B7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.25 + }, + "B8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.25 + }, + "B9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.25 + }, + "C1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.25 + }, + "C10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.25 + }, + "C11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.25 + }, + "C12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.25 + }, + "C2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.25 + }, + "C3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.25 + }, + "C4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.25 + }, + "C5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.25 + }, + "C6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.25 + }, + "C7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.25 + }, + "C8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.25 + }, + "C9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.25 + }, + "D1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.25 + }, + "D10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.25 + }, + "D11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.25 + }, + "D12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.25 + }, + "D2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.25 + }, + "D3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.25 + }, + "D4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.25 + }, + "D5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.25 + }, + "D6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.25 + }, + "D7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.25 + }, + "D8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.25 + }, + "D9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.25 + }, + "E1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.25 + }, + "E10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.25 + }, + "E11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.25 + }, + "E12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.25 + }, + "E2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.25 + }, + "E3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.25 + }, + "E4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.25 + }, + "E5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.25 + }, + "E6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.25 + }, + "E7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.25 + }, + "E8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.25 + }, + "E9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.25 + }, + "F1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.25 + }, + "F10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.25 + }, + "F11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.25 + }, + "F12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.25 + }, + "F2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.25 + }, + "F3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.25 + }, + "F4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.25 + }, + "F5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.25 + }, + "F6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.25 + }, + "F7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.25 + }, + "F8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.25 + }, + "F9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.25 + }, + "G1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.25 + }, + "G10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.25 + }, + "G11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.25 + }, + "G12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.25 + }, + "G2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.25 + }, + "G3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.25 + }, + "G4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.25 + }, + "G5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.25 + }, + "G6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.25 + }, + "G7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.25 + }, + "G8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.25 + }, + "G9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.25 + }, + "H1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.25 + }, + "H10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.25 + }, + "H11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.25 + }, + "H12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.25 + }, + "H2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.25 + }, + "H3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.25 + }, + "H4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.25 + }, + "H5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.25 + }, + "H6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.25 + }, + "H7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.25 + }, + "H8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.25 + }, + "H9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Mis", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "7" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "8" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 200.0, + "A10": 200.0, + "A11": 200.0, + "A12": 200.0, + "A2": 200.0, + "A3": 200.0, + "A4": 200.0, + "A5": 200.0, + "A6": 200.0, + "A7": 200.0, + "A8": 200.0, + "A9": 200.0, + "B1": 200.0, + "B10": 200.0, + "B11": 200.0, + "B12": 200.0, + "B2": 200.0, + "B3": 200.0, + "B4": 200.0, + "B5": 200.0, + "B6": 200.0, + "B7": 200.0, + "B8": 200.0, + "B9": 200.0, + "C1": 200.0, + "C10": 200.0, + "C11": 200.0, + "C12": 200.0, + "C2": 200.0, + "C3": 200.0, + "C4": 200.0, + "C5": 200.0, + "C6": 200.0, + "C7": 200.0, + "C8": 200.0, + "C9": 200.0, + "D1": 200.0, + "D10": 200.0, + "D11": 200.0, + "D12": 200.0, + "D2": 200.0, + "D3": 200.0, + "D4": 200.0, + "D5": 200.0, + "D6": 200.0, + "D7": 200.0, + "D8": 200.0, + "D9": 200.0, + "E1": 200.0, + "E10": 200.0, + "E11": 200.0, + "E12": 200.0, + "E2": 200.0, + "E3": 200.0, + "E4": 200.0, + "E5": 200.0, + "E6": 200.0, + "E7": 200.0, + "E8": 200.0, + "E9": 200.0, + "F1": 200.0, + "F10": 200.0, + "F11": 200.0, + "F12": 200.0, + "F2": 200.0, + "F3": 200.0, + "F4": 200.0, + "F5": 200.0, + "F6": 200.0, + "F7": 200.0, + "F8": 200.0, + "F9": 200.0, + "G1": 200.0, + "G10": 200.0, + "G11": 200.0, + "G12": 200.0, + "G2": 200.0, + "G3": 200.0, + "G4": 200.0, + "G5": 200.0, + "G6": 200.0, + "G7": 200.0, + "G8": 200.0, + "G9": 200.0, + "H1": 200.0, + "H10": 200.0, + "H11": 200.0, + "H12": 200.0, + "H2": 200.0, + "H3": 200.0, + "H4": 200.0, + "H5": 200.0, + "H6": 200.0, + "H7": 200.0, + "H8": 200.0, + "H9": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0, + "A2": 100.0, + "A3": 100.0, + "A4": 100.0, + "A5": 100.0, + "A6": 100.0, + "B1": 100.0, + "B2": 100.0, + "B3": 100.0, + "B4": 100.0, + "B5": 100.0, + "B6": 100.0, + "C1": 100.0, + "C2": 100.0, + "C3": 100.0, + "C4": 100.0, + "C5": 100.0, + "C6": 100.0, + "D1": 100.0, + "D2": 100.0, + "D3": 100.0, + "D4": 100.0, + "D5": 100.0, + "D6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 255.24, + "z": 2.25 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 255.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 285.75, + "y": 159.13, + "z": 7.7 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 146.88, + "y": 246.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 285.75, + "y": 141.88, + "z": 7.7 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.175, + "y": 66.275, + "z": 73.025 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 146.88, + "y": 237.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 285.75, + "y": 124.63, + "z": 7.7 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.175, + "y": 57.275, + "z": 73.025 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 146.88, + "y": 228.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 285.75, + "y": 107.38, + "z": 7.7 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.175, + "y": 48.275, + "z": 73.025 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setTargetTemperature", + "params": { + "celsius": 80.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 400.0 + }, + "result": { + "pipetteRetracted": false + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.175, + "y": 75.275, + "z": 73.525 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 146.88, + "y": 219.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.175, + "y": 75.275, + "z": 73.525 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 146.88, + "y": 210.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.175, + "y": 66.275, + "z": 73.525 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 146.88, + "y": 201.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.175, + "y": 57.275, + "z": 73.525 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 146.88, + "y": 192.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.175, + "y": 48.275, + "z": 73.525 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 155.88, + "y": 255.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 7.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 7.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 155.88, + "y": 246.24, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.175, + "y": 66.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.175, + "y": 66.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.175, + "y": 66.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.175, + "y": 57.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.175, + "y": 57.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.175, + "y": 57.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.175, + "y": 48.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.175, + "y": 48.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.175, + "y": 48.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.175, + "y": 39.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.175, + "y": 39.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.175, + "y": 39.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.175, + "y": 30.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.175, + "y": 30.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.175, + "y": 30.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.175, + "y": 21.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.175, + "y": 21.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.175, + "y": 21.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.175, + "y": 12.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.175, + "y": 12.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.175, + "y": 12.275, + "z": 73.025 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_HS_6_1_Smoke620release.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + } + }, + { + "definitionUri": "opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1", + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1", + "displayName": "Single", + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/biorad_96_wellplate_200ul_pcr/1", + "displayName": "Multi", + "loadName": "biorad_96_wellplate_200ul_pcr", + "location": { + "slotName": "9" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "Mis", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "7" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "8" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "L1" + }, + { + "description": "", + "displayColor": "#ffd600", + "displayName": "L2" + } + ], + "metadata": { + "author": "Opentrons QA", + "category": null, + "description": "", + "protocolName": "H/S normal use", + "subcategory": null, + "tags": [] + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error][OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error][OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error].json new file mode 100644 index 00000000000..384508e6c68 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error][OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error].json @@ -0,0 +1,7371 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "9" + }, + "model": "magneticModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": 0.125, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV1", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "magneticModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV2" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": -0.15, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV1", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "temperatureModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [ + "thermocyclerModuleV1" + ], + "dimensions": { + "bareOverallHeight": 98.0, + "lidHeight": 37.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": 0.0, + "y": 82.56, + "z": 97.8 + }, + "model": "thermocyclerModuleV1", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "thermocyclerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 42.25 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deepwell Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Temp", + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 42 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Generic 2 mL Screwcap", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "B1", + "B2", + "B3", + "B4", + "B5", + "B6", + "C1", + "C2", + "C3", + "C4", + "C5", + "C6", + "D1", + "D2", + "D3", + "D4", + "D5", + "D6" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1" + ], + [ + "A2", + "B2", + "C2", + "D2" + ], + [ + "A3", + "B3", + "C3", + "D3" + ], + [ + "A4", + "B4", + "C4", + "D4" + ], + [ + "A5", + "B5", + "C5", + "D5" + ], + [ + "A6", + "B6", + "C6", + "D6" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.63, + "z": 6.7 + }, + "A2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.63, + "z": 6.7 + }, + "A3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.63, + "z": 6.7 + }, + "A4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.63, + "z": 6.7 + }, + "A5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.63, + "z": 6.7 + }, + "A6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.63, + "z": 6.7 + }, + "B1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.38, + "z": 6.7 + }, + "B2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.38, + "z": 6.7 + }, + "B3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.38, + "z": 6.7 + }, + "B4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.38, + "z": 6.7 + }, + "B5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.38, + "z": 6.7 + }, + "B6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.38, + "z": 6.7 + }, + "C1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.13, + "z": 6.7 + }, + "C2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.13, + "z": 6.7 + }, + "C3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.13, + "z": 6.7 + }, + "C4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.13, + "z": 6.7 + }, + "C5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.13, + "z": 6.7 + }, + "C6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.13, + "z": 6.7 + }, + "D1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.88, + "z": 6.7 + }, + "D2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.88, + "z": 6.7 + }, + "D3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.88, + "z": 6.7 + }, + "D4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.88, + "z": 6.7 + }, + "D5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.88, + "z": 6.7 + }, + "D6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.88, + "z": 6.7 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Mag", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Themo", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "L1", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 300.0, + "A2": 300.0, + "B1": 300.0, + "B2": 300.0, + "C1": 300.0, + "C2": 300.0, + "D1": 300.0, + "D2": 300.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 20.0, + "A2": 20.0, + "A3": 20.0, + "B1": 20.0, + "B2": 20.0, + "B3": 20.0, + "C1": 20.0, + "C2": 20.0, + "C3": 20.0, + "D1": 20.0, + "D2": 20.0, + "D3": 20.0, + "E1": 20.0, + "E2": 20.0, + "E3": 20.0, + "F1": 20.0, + "F2": 20.0, + "F3": 20.0, + "G1": 20.0, + "G2": 20.0, + "G3": 20.0, + "H1": 20.0, + "H2": 20.0, + "H3": 20.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0, + "A2": 100.0, + "A3": 100.0, + "A4": 100.0, + "A5": 100.0, + "A6": 100.0, + "B1": 100.0, + "B2": 100.0, + "B3": 100.0, + "B4": 100.0, + "B5": 100.0, + "B6": 100.0, + "C1": 100.0, + "C2": 100.0, + "C3": 100.0, + "C4": 100.0, + "C5": 100.0, + "C6": 100.0, + "D1": 100.0, + "D2": 100.0, + "D3": 100.0, + "D4": 100.0, + "D5": 100.0, + "D6": 100.0, + "E1": 100.0, + "E2": 100.0, + "E3": 100.0, + "E4": 100.0, + "E5": 100.0, + "E6": 100.0, + "F1": 100.0, + "F2": 100.0, + "F3": 100.0, + "F4": 100.0, + "F5": 100.0, + "F6": 100.0, + "G1": 100.0, + "G2": 100.0, + "G3": 100.0, + "G4": 100.0, + "G5": 100.0, + "G6": 100.0, + "H1": 100.0, + "H2": 100.0, + "H3": 100.0, + "H4": 100.0, + "H5": 100.0, + "H6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0, + "A2": 100.0, + "A3": 100.0, + "A4": 100.0, + "A5": 100.0, + "A6": 100.0, + "B1": 100.0, + "B2": 100.0, + "B3": 100.0, + "B4": 100.0, + "B5": 100.0, + "B6": 100.0, + "C1": 100.0, + "C2": 100.0, + "C3": 100.0, + "C4": 100.0, + "C5": 100.0, + "C6": 100.0, + "D1": 100.0, + "D2": 100.0, + "D3": 100.0, + "D4": 100.0, + "D5": 100.0, + "D6": 100.0, + "E1": 100.0, + "E2": 100.0, + "E3": 100.0, + "E4": 100.0, + "E5": 100.0, + "E6": 100.0, + "F1": 100.0, + "F2": 100.0, + "F3": 100.0, + "F4": 100.0, + "F5": 100.0, + "F6": 100.0, + "G1": 100.0, + "G2": 100.0, + "G3": 100.0, + "G4": 100.0, + "G5": 100.0, + "G6": 100.0, + "H1": 100.0, + "H2": 100.0, + "H3": 100.0, + "H4": 100.0, + "H5": 100.0, + "H6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 29000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 155.88, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 333.505, + "y": 255.115, + "z": 83.67 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 164.88, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 320.1, + "y": 68.47999999999999, + "z": 87.29 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 164.88, + "y": 155.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 320.1, + "y": 51.230000000000004, + "z": 87.29 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 164.88, + "y": 146.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 320.1, + "y": 33.980000000000004, + "z": 87.29 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 164.88, + "y": 137.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 320.1, + "y": 16.73, + "z": 87.29 + }, + "volume": 25.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 164.88, + "y": 128.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 337.8, + "z": 88.52 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 164.88, + "y": 119.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 328.8, + "z": 88.52 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 164.88, + "y": 110.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 319.8, + "z": 88.52 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 164.88, + "y": 101.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 337.8, + "z": 88.52 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 173.88, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 328.8, + "z": 88.52 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 173.88, + "y": 155.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 319.8, + "z": 88.52 + }, + "volume": 22.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 55.0 + }, + "result": { + "targetBlockTemperature": 55.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "params": { + "celsius": 50.0 + }, + "result": { + "targetLidTemperature": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setTargetTemperature", + "params": { + "celsius": 55.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 1000.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "magneticModule/engage", + "params": { + "height": 12.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "params": { + "celsius": 80.0 + }, + "result": { + "targetTemperature": 80.0 + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "error": { + "detail": "Heater-Shaker cannot open its labware latch while it is shaking.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "CannotPerformModuleAction", + "wrappedErrors": [] + }, + "params": {}, + "status": "failed" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "status": "failed" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "status": "failed" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "status": "failed" + }, + { + "commandType": "thermocycler/deactivateBlock", + "params": {}, + "status": "failed" + }, + { + "commandType": "thermocycler/deactivateLid", + "params": {}, + "status": "failed" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [ + { + "detail": "Heater-Shaker cannot open its labware latch while it is shaking.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "CannotPerformModuleAction", + "wrappedErrors": [] + } + ], + "files": [ + { + "name": "OT2_P300M_P20S_MM_HS_TD_TC_6_1_AllMods_Error.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1", + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1", + "displayName": "Temp", + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "displayName": "Mag", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "displayName": "Themo", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "L1", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "6" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "L1" + }, + { + "description": "", + "displayColor": "#ffd600", + "displayName": "L2" + } + ], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "All mods", + "subcategory": null, + "tags": [] + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "9" + }, + "model": "magneticModuleV1" + }, + { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV1" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p300_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error].json new file mode 100644 index 00000000000..7ea80ec7c28 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error].json @@ -0,0 +1,7095 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [ + "thermocyclerModuleV1" + ], + "dimensions": { + "bareOverallHeight": 98.0, + "lidHeight": 37.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": 0.0, + "y": 82.56, + "z": 97.8 + }, + "model": "thermocyclerModuleV1", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "thermocyclerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons" + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 172.86, + "yDimension": 165.86, + "zDimension": 82 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "trash", + "displayName": "Opentrons Fixed Trash", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trash", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_1_trash_1100ml_fixed", + "quirks": [ + "centerMultichannelOnWells", + "fixedTrash", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 0, + "shape": "rectangular", + "totalLiquidVolume": 1100000, + "x": 82.84, + "xDimension": 107.11, + "y": 80, + "yDimension": 165.67, + "z": 82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 10 µL", + "loadName": "opentrons_96_tiprack_10ul", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 10 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_10ul", + "tipLength": 39.2, + "tipOverlap": 3.29 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "A1", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "A2", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Mag Labware", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "TempDeck LW", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "9" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "error": { + "detail": "Cannot aspirate more than pipette max volume", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "LegacyContextCommandError", + "wrappedErrors": [ + { + "detail": "AssertionError: Cannot aspirate more than pipette max volume", + "errorCode": "4000", + "errorInfo": { + "args": "('Cannot aspirate more than pipette max volume',)", + "class": "AssertionError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/commands/publisher.py\", line 113, in publish_context\n yield\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/instrument_context.py\", line 267, in aspirate\n self._core.aspirate(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy_simulator/legacy_instrument_core.py\", line 119, in aspirate\n new_volume <= self._pipette_dict[\"working_volume\"]\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + }, + "params": { + "flowRate": 94.0, + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "status": "failed" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 4 + }, + "errors": [ + { + "detail": "Cannot aspirate more than pipette max volume", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "UnexpectedProtocolError", + "wrappedErrors": [ + { + "detail": "AssertionError: Cannot aspirate more than pipette max volume", + "errorCode": "4000", + "errorInfo": { + "args": "('Cannot aspirate more than pipette max volume',)", + "class": "AssertionError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 90, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/legacy_wrappers.py\", line 173, in execute\n await to_thread.run_sync(run_protocol, protocol, context)\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 28, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(func, *args, cancellable=cancellable,\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 802, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 740, in run\n result = func(*args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 45, in run_protocol\n execute_json_v4.dispatch_json(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_json_v4.py\", line 272, in dispatch_json\n pipette_command_map[command_type]( # type: ignore\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_json_v3.py\", line 159, in _aspirate\n pipette.aspirate(volume, location)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/instrument_context.py\", line 267, in aspirate\n self._core.aspirate(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy_simulator/legacy_instrument_core.py\", line 119, in aspirate\n new_volume <= self._pipette_dict[\"working_volume\"]\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40Error.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_10ul/1", + "displayName": "Opentrons 96 Tip Rack 10 µL", + "loadName": "opentrons_96_tiprack_10ul", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "A1", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "A2", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "displayName": "Mag Labware", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1", + "displayName": "TempDeck LW", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "9" + } + } + ], + "liquids": [], + "metadata": { + "author": "NN MM", + "category": null, + "description": "Protocol for e2e tests", + "protocolName": "script_pur_sample_1", + "subcategory": null, + "tags": [] + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40].json new file mode 100644 index 00000000000..3d1a5e973ae --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40][OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40].json @@ -0,0 +1,9621 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [ + "thermocyclerModuleV1" + ], + "dimensions": { + "bareOverallHeight": 98.0, + "lidHeight": 37.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": 0.0, + "y": 82.56, + "z": 97.8 + }, + "model": "thermocyclerModuleV1", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "thermocyclerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons" + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 172.86, + "yDimension": 165.86, + "zDimension": 82 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "trash", + "displayName": "Opentrons Fixed Trash", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trash", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_1_trash_1100ml_fixed", + "quirks": [ + "centerMultichannelOnWells", + "fixedTrash", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 0, + "shape": "rectangular", + "totalLiquidVolume": 1100000, + "x": 82.84, + "xDimension": 107.11, + "y": 80, + "yDimension": 165.67, + "z": 82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 10 µL", + "loadName": "opentrons_96_tiprack_10ul", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 10 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_10ul", + "tipLength": 39.2, + "tipOverlap": 3.29 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "A1", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "A2", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Mag Labware", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "TempDeck LW", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "9" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Temperature Module temperature to 25.0 °C (rounded off to nearest integer)", + "legacyCommandType": "command.TEMPDECK_SET_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Waiting for Temperature Module to reach temperature 25.0 °C (rounded off to nearest integer)", + "legacyCommandType": "command.TEMPDECK_AWAIT_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 4 + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_MM_TM_TC1_5_2_6_PD40.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_10ul/1", + "displayName": "Opentrons 96 Tip Rack 10 µL", + "loadName": "opentrons_96_tiprack_10ul", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "A1", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "A2", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "displayName": "Mag Labware", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1", + "displayName": "TempDeck LW", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "Opentrons 96 Tip Rack 20 µL", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "9" + } + } + ], + "liquids": [], + "metadata": { + "author": "NN MM", + "category": null, + "description": "Protocol for e2e tests", + "protocolName": "script_pur_sample_1", + "subcategory": null, + "tags": [] + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids][OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids][OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids].json new file mode 100644 index 00000000000..131a55cc052 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids][OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids].json @@ -0,0 +1,5315 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Filter Tip Rack 20 µL", + "loadName": "opentrons_96_filtertiprack_20ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Filter Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_filtertiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 3.29 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 74.26, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 74.26, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 74.26, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 74.26, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 74.26, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 74.26, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 74.26, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 74.26, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 74.26, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 74.26, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 74.26, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 74.26, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 65.26, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 65.26, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 65.26, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 65.26, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 65.26, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 65.26, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 65.26, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 65.26, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 65.26, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 65.26, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 65.26, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 65.26, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 56.26, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 56.26, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 56.26, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 56.26, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 56.26, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 56.26, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 56.26, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 56.26, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 56.26, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 56.26, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 56.26, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 56.26, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 47.26, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 47.26, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 47.26, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 47.26, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 47.26, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 47.26, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 47.26, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 47.26, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 47.26, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 47.26, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 47.26, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 47.26, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 38.26, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 38.26, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 38.26, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 38.26, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 38.26, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 38.26, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 38.26, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 38.26, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 38.26, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 38.26, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 38.26, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 38.26, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 29.26, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 29.26, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 29.26, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 29.26, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 29.26, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 29.26, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 29.26, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 29.26, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 29.26, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 29.26, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 29.26, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 29.26, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 20.26, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 20.26, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 20.26, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 20.26, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 20.26, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 20.26, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 20.26, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 20.26, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 20.26, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 20.26, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 20.26, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 20.26, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.36, + "y": 11.26, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.36, + "y": 11.26, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.36, + "y": 11.26, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.36, + "y": 11.26, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.36, + "y": 11.26, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.36, + "y": 11.26, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.36, + "y": 11.26, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.36, + "y": 11.26, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.36, + "y": 11.26, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.36, + "y": 11.26, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.36, + "y": 11.26, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.36, + "y": 11.26, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "290ml", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "10" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "290-2", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "11" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Agilent 1 Well Reservoir 290 mL", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "7" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "many", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "8" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "mix", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "mix/transfer", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A10": 400.0, + "A11": 400.0, + "A12": 400.0, + "A5": 400.0, + "A6": 400.0, + "A7": 400.0, + "A8": 400.0, + "A9": 400.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A4": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A3": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 29000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 29000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 29000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 314.28499999999997, + "z": 5.82 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 155.88, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 196.38, + "y": 314.28499999999997, + "z": 5.82 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 164.88, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 150.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 223.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 155.88, + "y": 223.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 164.88, + "y": 223.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.36, + "y": 47.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 173.88, + "y": 223.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.36, + "y": 38.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 200.88, + "y": 223.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 173.88, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.36, + "y": 29.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 133.28, + "z": 5.05 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.36, + "y": 20.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 133.28, + "z": 5.05 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.36, + "y": 11.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 133.28, + "z": 5.05 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.36, + "y": 74.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 133.28, + "z": 5.05 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.36, + "y": 65.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 133.28, + "z": 5.05 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.36, + "y": 56.26, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 328.88, + "y": 133.285, + "z": 5.82 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 3.78, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 133.28, + "z": 5.05 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_NoMod_6_1_MixTransferManyLiquids.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_filtertiprack_20ul/1", + "displayName": "Opentrons 96 Filter Tip Rack 20 µL", + "loadName": "opentrons_96_filtertiprack_20ul", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "290ml", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "10" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "290-2", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "11" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "7" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "many", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "8" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "mix", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "mix/transfer", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "4" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "1" + }, + { + "description": "", + "displayColor": "#ffd600", + "displayName": "2" + }, + { + "description": "", + "displayColor": "#9dffd8", + "displayName": "3" + }, + { + "description": "", + "displayColor": "#ff9900", + "displayName": "4" + }, + { + "description": "", + "displayColor": "#50d5ff", + "displayName": "5" + }, + { + "description": "", + "displayColor": "#ff80f5", + "displayName": "6" + }, + { + "description": "", + "displayColor": "#7eff42", + "displayName": "7" + }, + { + "description": "", + "displayColor": "#ff4f4f", + "displayName": "8" + } + ], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "Mix/transfer- several liquids", + "subcategory": null, + "tags": [] + }, + "modules": [], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_None_2_12_FailOnRun][OT2_P300M_P20S_None_2_12_FailOnRun].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_None_2_12_FailOnRun][OT2_P300M_P20S_None_2_12_FailOnRun].json new file mode 100644 index 00000000000..44943a3a477 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_None_2_12_FailOnRun][OT2_P300M_P20S_None_2_12_FailOnRun].json @@ -0,0 +1,2656 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "one comment", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 12 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_None_2_12_FailOnRun.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.12", + "author": "Opentrons Engineering ", + "description": "A single comment", + "protocolName": "Will fail on run", + "source": "Software Testing Team" + }, + "modules": [], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3].json new file mode 100644 index 00000000000..57aa824ef3d --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3].json @@ -0,0 +1,12460 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Let there be light! True 🌠🌠🌠", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is the door is closed? True 🚪🚪🚪", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is this a simulation? True 🔮🔮🔮", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Running against API Version: 2.13", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Temperature-Controlled plate", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 19.35 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter with NEST Well Plate 100 µl", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 3.57 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 3.57 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 3.57 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 3.57 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 3.57 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 3.57 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 3.57 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 3.57 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 3.57 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 3.57 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 3.57 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 3.57 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 3.57 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 3.57 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 3.57 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 3.57 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 3.57 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 3.57 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 3.57 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 3.57 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 3.57 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 3.57 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 3.57 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 3.57 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 3.57 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 3.57 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 3.57 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 3.57 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 3.57 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 3.57 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 3.57 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 3.57 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 3.57 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 3.57 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 3.57 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 3.57 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 3.57 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 3.57 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 3.57 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 3.57 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 3.57 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 3.57 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 3.57 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 3.57 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 3.57 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 3.57 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 3.57 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 3.57 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 3.57 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 3.57 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 3.57 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 3.57 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 3.57 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 3.57 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 3.57 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 3.57 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 3.57 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 3.57 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 3.57 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 3.57 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 3.57 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 3.57 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 3.57 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 3.57 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 3.57 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 3.57 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 3.57 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 3.57 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 3.57 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 3.57 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 3.57 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 3.57 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 3.57 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 3.57 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 3.57 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 3.57 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 3.57 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 3.57 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 3.57 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 3.57 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 3.57 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 3.57 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 3.57 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 3.57 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 3.57 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 3.57 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 3.57 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 3.57 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 3.57 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 3.57 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 3.57 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 3.57 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 3.57 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 3.57 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 3.57 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 3.57 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "4 tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "cpx", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127, + "yDimension": 85, + "zDimension": 40 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "cpx", + "brandId": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "A2", + "B1", + "B2" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "cpx 4 Tube Rack with cpx 0.1 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1" + ], + [ + "A2", + "B2" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "cpx_4_tuberack_100ul", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 65, + "z": 17 + }, + "A2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 65, + "z": 17 + }, + "B1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 35, + "z": 17 + }, + "B2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 35, + "z": 17 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Latching labware on Heater-Shaker", + "legacyCommandType": "command.HEATER_SHAKER_CLOSE_LABWARE_LATCH" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Air gap", + "legacyCommandType": "command.AIR_GAP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 3.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to E12 of logo destination on 2", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Moving to E11 of logo destination on 2", + "legacyCommandType": "command.MOVE_TO" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Touching tip", + "legacyCommandType": "command.TOUCH_TIP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Waiting for Temperature Module to reach temperature 25.0 °C (rounded off to nearest integer)", + "legacyCommandType": "command.TEMPDECK_AWAIT_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Heater-Shaker to Shake at 466 RPM and waiting until reached", + "legacyCommandType": "command.HEATER_SHAKER_SET_AND_WAIT_FOR_SHAKE_SPEED" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 5.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Target Temperature of Heater-Shaker to 38 °C", + "legacyCommandType": "command.HEATER_SHAKER_SET_TARGET_TEMPERATURE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Waiting for Heater-Shaker to reach target temperature", + "legacyCommandType": "command.HEATER_SHAKER_WAIT_FOR_TEMPERATURE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Opening Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_OPEN" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Closing Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_CLOSE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler lid temperature to 38.0 °C", + "legacyCommandType": "command.THERMOCYCLER_SET_LID_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 28.0 °C with a hold time of 5 seconds", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Thermocycler well block heating", + "legacyCommandType": "command.THERMOCYCLER_DEACTIVATE_BLOCK" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Thermocycler lid heating", + "legacyCommandType": "command.THERMOCYCLER_DEACTIVATE_LID" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Opening Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_OPEN" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Shaker", + "legacyCommandType": "command.HEATER_SHAKER_DEACTIVATE_SHAKER" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "This is a pause" + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Heater-Shaker to Shake at 350 RPM and waiting until reached", + "legacyCommandType": "command.HEATER_SHAKER_SET_AND_WAIT_FOR_SHAKE_SPEED" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 5.0 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Shaker", + "legacyCommandType": "command.HEATER_SHAKER_DEACTIVATE_SHAKER" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 11.34, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 13 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_TC_HS_TM_2_13_SmokeTestV3.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1", + "displayName": "Temperature-Controlled plate", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/1", + "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "custom_beta/cpx_4_tuberack_100ul/1", + "displayName": "4 tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + } + ], + "liquids": [], + "metadata": { + "author": "Opentrons Engineering ", + "description": "Description of the protocol that is longish \n has \n returns and \n emoji 😊 ⬆️ ", + "protocolName": "🛠️ 2.13 Smoke Test V3 🪄", + "source": "Software Testing Team" + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3].json new file mode 100644 index 00000000000..b1492e7d1a6 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3].json @@ -0,0 +1,12664 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "setRailLights", + "params": { + "on": true + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Let there be light! True 🌠🌠🌠", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is the door is closed? True 🚪🚪🚪", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is this a simulation? True 🔮🔮🔮", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Running against API Version: 2.14", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Temperature-Controlled plate", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 19.35 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter with NEST Well Plate 100 µl", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 3.57 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 3.57 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 3.57 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 3.57 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 3.57 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 3.57 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 3.57 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 3.57 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 3.57 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 3.57 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 3.57 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 3.57 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 3.57 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 3.57 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 3.57 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 3.57 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 3.57 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 3.57 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 3.57 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 3.57 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 3.57 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 3.57 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 3.57 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 3.57 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 3.57 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 3.57 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 3.57 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 3.57 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 3.57 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 3.57 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 3.57 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 3.57 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 3.57 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 3.57 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 3.57 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 3.57 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 3.57 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 3.57 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 3.57 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 3.57 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 3.57 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 3.57 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 3.57 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 3.57 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 3.57 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 3.57 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 3.57 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 3.57 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 3.57 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 3.57 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 3.57 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 3.57 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 3.57 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 3.57 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 3.57 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 3.57 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 3.57 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 3.57 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 3.57 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 3.57 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 3.57 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 3.57 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 3.57 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 3.57 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 3.57 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 3.57 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 3.57 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 3.57 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 3.57 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 3.57 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 3.57 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 3.57 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 3.57 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 3.57 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 3.57 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 3.57 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 3.57 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 3.57 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 3.57 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 3.57 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 3.57 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 3.57 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 3.57 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 3.57 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 3.57 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 3.57 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 3.57 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 3.57 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 3.57 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 3.57 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 3.57 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 3.57 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 3.57 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 3.57 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 3.57 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 3.57 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "4 custom tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "cpx", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127, + "yDimension": 85, + "zDimension": 40 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "cpx", + "brandId": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "A2", + "B1", + "B2" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "cpx 4 Tube Rack with cpx 0.1 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1" + ], + [ + "A2", + "B2" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "cpx_4_tuberack_100ul", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 65, + "z": 17 + }, + "A2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 65, + "z": 17 + }, + "B1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 35, + "z": 17 + }, + "B2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 35, + "z": 17 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 4000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 2000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 555.55555 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 900.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 1001.11 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 200.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 191.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 200.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 209.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 182.88, + "y": 38.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 155.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 155.74, + "z": 45.09 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 146.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0000000000000036 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 20.700000000000003 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0000000000000036 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 20.700000000000003 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 3.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 236.88, + "y": 11.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 245.88, + "y": 38.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 236.88, + "y": 38.24, + "z": 0.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 236.88, + "y": 38.24, + "z": 0.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 146.88, + "y": 11.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of the well?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 146.74, + "z": 45.09 + } + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "params": { + "celsius": 25.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 466.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 5.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setTargetTemperature", + "params": { + "celsius": 38.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "params": { + "celsius": 38.0 + }, + "result": { + "targetLidTemperature": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 28.0, + "holdTimeSeconds": 5.0 + }, + "result": { + "targetBlockTemperature": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateBlock", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 137.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 280.53, + "y": 255.05, + "z": 87.51 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.255, + "y": 75.365, + "z": 72.845 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 350.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 5.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 128.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 11.34, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -22.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 315.0, + "y": 125.5, + "z": 18.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 324.04, + "z": 100.08 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 14 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_TC_HS_TM_2_14_SmokeTestV3.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1", + "displayName": "Temperature-Controlled plate", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/1", + "loadName": "opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "custom_beta/cpx_4_tuberack_100ul/1", + "displayName": "4 custom tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + } + ], + "liquids": [ + { + "description": "H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + }, + { + "description": "C₃H₆O", + "displayColor": "#38588a", + "displayName": "acetone" + } + ], + "metadata": { + "author": "Opentrons Engineering ", + "description": "Description of the protocol that is longish \n has \n returns and \n emoji 😊 ⬆️ ", + "protocolName": "🛠️ 2.14 Smoke Test V3 🪄", + "source": "Software Testing Team" + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3].json new file mode 100644 index 00000000000..aab5713bb15 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3].json @@ -0,0 +1,15223 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "setRailLights", + "params": { + "on": true + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Let there be light! True 🌠🌠🌠", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is the door is closed? True 🚪🚪🚪", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is this a simulation? True 🔮🔮🔮", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Running against API Version: 2.15", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_well_aluminum_block", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 Well Aluminum Block", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_well_aluminum_block", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Temperature-Controlled plate", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_pcr_adapter", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 13.85 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_pcr_adapter", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 69, + "z": 1.85 + }, + "A10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 69, + "z": 1.85 + }, + "A11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 69, + "z": 1.85 + }, + "A12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 69, + "z": 1.85 + }, + "A2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 69, + "z": 1.85 + }, + "A3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 69, + "z": 1.85 + }, + "A4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 69, + "z": 1.85 + }, + "A5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 69, + "z": 1.85 + }, + "A6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 69, + "z": 1.85 + }, + "A7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 69, + "z": 1.85 + }, + "A8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 69, + "z": 1.85 + }, + "A9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 69, + "z": 1.85 + }, + "B1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 60, + "z": 1.85 + }, + "B10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 60, + "z": 1.85 + }, + "B11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 60, + "z": 1.85 + }, + "B12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 60, + "z": 1.85 + }, + "B2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 60, + "z": 1.85 + }, + "B3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 60, + "z": 1.85 + }, + "B4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 60, + "z": 1.85 + }, + "B5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 60, + "z": 1.85 + }, + "B6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 60, + "z": 1.85 + }, + "B7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 60, + "z": 1.85 + }, + "B8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 60, + "z": 1.85 + }, + "B9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 60, + "z": 1.85 + }, + "C1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 51, + "z": 1.85 + }, + "C10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 51, + "z": 1.85 + }, + "C11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 51, + "z": 1.85 + }, + "C12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 51, + "z": 1.85 + }, + "C2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 51, + "z": 1.85 + }, + "C3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 51, + "z": 1.85 + }, + "C4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 51, + "z": 1.85 + }, + "C5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 51, + "z": 1.85 + }, + "C6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 51, + "z": 1.85 + }, + "C7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 51, + "z": 1.85 + }, + "C8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 51, + "z": 1.85 + }, + "C9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 51, + "z": 1.85 + }, + "D1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 42, + "z": 1.85 + }, + "D10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 42, + "z": 1.85 + }, + "D11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 42, + "z": 1.85 + }, + "D12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 42, + "z": 1.85 + }, + "D2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 42, + "z": 1.85 + }, + "D3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 42, + "z": 1.85 + }, + "D4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 42, + "z": 1.85 + }, + "D5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 42, + "z": 1.85 + }, + "D6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 42, + "z": 1.85 + }, + "D7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 42, + "z": 1.85 + }, + "D8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 42, + "z": 1.85 + }, + "D9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 42, + "z": 1.85 + }, + "E1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 33, + "z": 1.85 + }, + "E10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 33, + "z": 1.85 + }, + "E11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 33, + "z": 1.85 + }, + "E12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 33, + "z": 1.85 + }, + "E2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 33, + "z": 1.85 + }, + "E3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 33, + "z": 1.85 + }, + "E4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 33, + "z": 1.85 + }, + "E5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 33, + "z": 1.85 + }, + "E6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 33, + "z": 1.85 + }, + "E7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 33, + "z": 1.85 + }, + "E8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 33, + "z": 1.85 + }, + "E9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 33, + "z": 1.85 + }, + "F1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 24, + "z": 1.85 + }, + "F10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 24, + "z": 1.85 + }, + "F11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 24, + "z": 1.85 + }, + "F12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 24, + "z": 1.85 + }, + "F2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 24, + "z": 1.85 + }, + "F3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 24, + "z": 1.85 + }, + "F4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 24, + "z": 1.85 + }, + "F5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 24, + "z": 1.85 + }, + "F6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 24, + "z": 1.85 + }, + "F7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 24, + "z": 1.85 + }, + "F8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 24, + "z": 1.85 + }, + "F9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 24, + "z": 1.85 + }, + "G1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 15, + "z": 1.85 + }, + "G10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 15, + "z": 1.85 + }, + "G11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 15, + "z": 1.85 + }, + "G12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 15, + "z": 1.85 + }, + "G2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 15, + "z": 1.85 + }, + "G3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 15, + "z": 1.85 + }, + "G4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 15, + "z": 1.85 + }, + "G5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 15, + "z": 1.85 + }, + "G6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 15, + "z": 1.85 + }, + "G7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 15, + "z": 1.85 + }, + "G8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 15, + "z": 1.85 + }, + "G9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 15, + "z": 1.85 + }, + "H1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 6, + "z": 1.85 + }, + "H10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 6, + "z": 1.85 + }, + "H11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 6, + "z": 1.85 + }, + "H12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 6, + "z": 1.85 + }, + "H2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 6, + "z": 1.85 + }, + "H3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 6, + "z": 1.85 + }, + "H4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 6, + "z": 1.85 + }, + "H5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 6, + "z": 1.85 + }, + "H6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 6, + "z": 1.85 + }, + "H7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 6, + "z": 1.85 + }, + "H8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 6, + "z": 1.85 + }, + "H9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 6, + "z": 1.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "4 custom tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "cpx", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127, + "yDimension": 85, + "zDimension": 40 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "cpx", + "brandId": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "A2", + "B1", + "B2" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "cpx 4 Tube Rack with cpx 0.1 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1" + ], + [ + "A2", + "B2" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "cpx_4_tuberack_100ul", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 65, + "z": 17 + }, + "A2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 65, + "z": 17 + }, + "B1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 35, + "z": 17 + }, + "B2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 35, + "z": 17 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 4000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 2000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 555.55555 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 900.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 1001.11 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "2" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of reservoir A1 in slot 2?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "3" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of reservoir A1 in slot 3?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "2" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 152.5, + "y": 65.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of custom labware A1 in slot 2?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "6" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 285.0, + "y": 155.5, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of custom labware A1 in slot 6?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "2" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of well A1 in slot 2?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 200.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 191.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 200.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 209.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 182.88, + "y": 38.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": true, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 363.895, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 155.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 155.74, + "z": 45.09 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 146.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0000000000000036 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 20.700000000000003 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0000000000000036 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 20.700000000000003 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 3.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 236.88, + "y": 11.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 245.88, + "y": 38.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 236.88, + "y": 38.24, + "z": 0.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 236.88, + "y": 38.24, + "z": 0.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 146.88, + "y": 11.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of the well?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 146.74, + "z": 45.09 + } + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "params": { + "celsius": 25.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 466.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 5.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setTargetTemperature", + "params": { + "celsius": 38.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "params": { + "celsius": 38.0 + }, + "result": { + "targetLidTemperature": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 28.0, + "holdTimeSeconds": 5.0 + }, + "result": { + "targetBlockTemperature": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateBlock", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 137.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 280.53, + "y": 255.08999999999997, + "z": 87.51 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": true, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 331.78499999999997, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.255, + "y": 75.365, + "z": 73.84500000000001 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 350.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 5.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 128.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 11.34, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -22.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 315.0, + "y": 125.5, + "z": 18.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": true, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 363.895, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 324.04, + "z": 100.08 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": true, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 331.78499999999997, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_TC_HS_TM_2_15_SmokeTestV3.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", + "loadName": "opentrons_96_well_aluminum_block", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "displayName": "Temperature-Controlled plate", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_pcr_adapter/1", + "loadName": "opentrons_96_pcr_adapter", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "custom_beta/cpx_4_tuberack_100ul/1", + "displayName": "4 custom tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + } + ], + "liquids": [ + { + "description": "H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + }, + { + "description": "C₃H₆O", + "displayColor": "#38588a", + "displayName": "acetone" + } + ], + "metadata": { + "author": "Opentrons Engineering ", + "description": "Description of the protocol that is longish \n has \n returns and \n emoji 😊 ⬆️ ", + "protocolName": "🛠️ 2.15 Smoke Test V3 🪄", + "source": "Software Testing Team" + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3].json new file mode 100644 index 00000000000..49b64623b97 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3][OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3].json @@ -0,0 +1,15439 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "setRailLights", + "params": { + "on": true + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Let there be light! True 🌠🌠🌠", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is the door is closed? True 🚪🚪🚪", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Is this a simulation? True 🔮🔮🔮", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Running against API Version: 2.16", + "legacyCommandType": "command.COMMENT" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_well_aluminum_block", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 Well Aluminum Block", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_well_aluminum_block", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Temperature-Controlled plate", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_pcr_adapter", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 13.85 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_pcr_adapter", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 69, + "z": 1.85 + }, + "A10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 69, + "z": 1.85 + }, + "A11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 69, + "z": 1.85 + }, + "A12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 69, + "z": 1.85 + }, + "A2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 69, + "z": 1.85 + }, + "A3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 69, + "z": 1.85 + }, + "A4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 69, + "z": 1.85 + }, + "A5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 69, + "z": 1.85 + }, + "A6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 69, + "z": 1.85 + }, + "A7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 69, + "z": 1.85 + }, + "A8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 69, + "z": 1.85 + }, + "A9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 69, + "z": 1.85 + }, + "B1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 60, + "z": 1.85 + }, + "B10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 60, + "z": 1.85 + }, + "B11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 60, + "z": 1.85 + }, + "B12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 60, + "z": 1.85 + }, + "B2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 60, + "z": 1.85 + }, + "B3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 60, + "z": 1.85 + }, + "B4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 60, + "z": 1.85 + }, + "B5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 60, + "z": 1.85 + }, + "B6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 60, + "z": 1.85 + }, + "B7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 60, + "z": 1.85 + }, + "B8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 60, + "z": 1.85 + }, + "B9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 60, + "z": 1.85 + }, + "C1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 51, + "z": 1.85 + }, + "C10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 51, + "z": 1.85 + }, + "C11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 51, + "z": 1.85 + }, + "C12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 51, + "z": 1.85 + }, + "C2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 51, + "z": 1.85 + }, + "C3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 51, + "z": 1.85 + }, + "C4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 51, + "z": 1.85 + }, + "C5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 51, + "z": 1.85 + }, + "C6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 51, + "z": 1.85 + }, + "C7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 51, + "z": 1.85 + }, + "C8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 51, + "z": 1.85 + }, + "C9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 51, + "z": 1.85 + }, + "D1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 42, + "z": 1.85 + }, + "D10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 42, + "z": 1.85 + }, + "D11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 42, + "z": 1.85 + }, + "D12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 42, + "z": 1.85 + }, + "D2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 42, + "z": 1.85 + }, + "D3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 42, + "z": 1.85 + }, + "D4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 42, + "z": 1.85 + }, + "D5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 42, + "z": 1.85 + }, + "D6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 42, + "z": 1.85 + }, + "D7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 42, + "z": 1.85 + }, + "D8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 42, + "z": 1.85 + }, + "D9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 42, + "z": 1.85 + }, + "E1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 33, + "z": 1.85 + }, + "E10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 33, + "z": 1.85 + }, + "E11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 33, + "z": 1.85 + }, + "E12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 33, + "z": 1.85 + }, + "E2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 33, + "z": 1.85 + }, + "E3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 33, + "z": 1.85 + }, + "E4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 33, + "z": 1.85 + }, + "E5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 33, + "z": 1.85 + }, + "E6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 33, + "z": 1.85 + }, + "E7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 33, + "z": 1.85 + }, + "E8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 33, + "z": 1.85 + }, + "E9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 33, + "z": 1.85 + }, + "F1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 24, + "z": 1.85 + }, + "F10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 24, + "z": 1.85 + }, + "F11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 24, + "z": 1.85 + }, + "F12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 24, + "z": 1.85 + }, + "F2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 24, + "z": 1.85 + }, + "F3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 24, + "z": 1.85 + }, + "F4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 24, + "z": 1.85 + }, + "F5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 24, + "z": 1.85 + }, + "F6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 24, + "z": 1.85 + }, + "F7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 24, + "z": 1.85 + }, + "F8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 24, + "z": 1.85 + }, + "F9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 24, + "z": 1.85 + }, + "G1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 15, + "z": 1.85 + }, + "G10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 15, + "z": 1.85 + }, + "G11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 15, + "z": 1.85 + }, + "G12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 15, + "z": 1.85 + }, + "G2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 15, + "z": 1.85 + }, + "G3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 15, + "z": 1.85 + }, + "G4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 15, + "z": 1.85 + }, + "G5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 15, + "z": 1.85 + }, + "G6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 15, + "z": 1.85 + }, + "G7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 15, + "z": 1.85 + }, + "G8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 15, + "z": 1.85 + }, + "G9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 15, + "z": 1.85 + }, + "H1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 6, + "z": 1.85 + }, + "H10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 6, + "z": 1.85 + }, + "H11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 6, + "z": 1.85 + }, + "H12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 6, + "z": 1.85 + }, + "H2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 6, + "z": 1.85 + }, + "H3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 6, + "z": 1.85 + }, + "H4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 6, + "z": 1.85 + }, + "H5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 6, + "z": 1.85 + }, + "H6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 6, + "z": 1.85 + }, + "H7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 6, + "z": 1.85 + }, + "H8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 6, + "z": 1.85 + }, + "H9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 6, + "z": 1.85 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "4 custom tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "cpx", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127, + "yDimension": 85, + "zDimension": 40 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "cpx", + "brandId": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "A2", + "B1", + "B2" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "cpx 4 Tube Rack with cpx 0.1 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1" + ], + [ + "A2", + "B2" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "cpx_4_tuberack_100ul", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 65, + "z": 17 + }, + "A2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 65, + "z": 17 + }, + "B1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 35, + "z": 17 + }, + "B2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 35, + "z": 17 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 4000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A2": 2000.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A5": 555.55555 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 900.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A8": 1001.11 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "2" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of reservoir A1 in slot 2?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "3" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of reservoir A1 in slot 3?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "2" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 152.5, + "y": 65.0, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of custom labware A1 in slot 2?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "6" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 285.0, + "y": 155.5, + "z": 40.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of custom labware A1 in slot 6?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "params": { + "newLocation": { + "slotName": "2" + }, + "strategy": "manualMoveWithPause" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of well A1 in slot 2?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "prepareToAspirate", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 6.55 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Testing prepare_to_aspirate - watch pipette until next pause.\n The pipette should only move up out of the well after it has aspirated." + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Did the pipette move up out of the well, only once, after aspirating?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette over the trash? Pipette will home after this pause." + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette over the trash?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 200.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 7.56 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 191.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 7.56 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 200.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 7.56 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 209.88, + "y": 47.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 7.56 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 182.88, + "y": 38.24, + "z": 1.92 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": false, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowOutInPlace", + "params": { + "flowRate": 7.56 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 363.89500000000004, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 155.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 236.88, + "y": 65.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 236.88, + "y": 56.24, + "z": 1.92 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 315.38, + "y": 42.78, + "z": 31.400000000000002 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 155.74, + "z": 45.09 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 146.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0000000000000036 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 20.700000000000003 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0000000000000036 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 236.88, + "y": 74.24, + "z": 20.700000000000003 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 3.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.78 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 236.88, + "y": 11.24, + "z": 1.92 + }, + "volume": 5.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 245.88, + "y": 38.24, + "z": 15.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "params": { + "forceDirect": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 236.88, + "y": 38.24, + "z": 0.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.78 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 236.88, + "y": 38.24, + "z": 0.92 + } + }, + "status": "succeeded" + }, + { + "commandType": "touchTip", + "params": { + "radius": 1.0, + "speed": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 146.88, + "y": 11.24, + "z": 14.7 + } + }, + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "params": { + "message": "Is the pipette tip in the middle of the well?" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 146.74, + "z": 45.09 + } + }, + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "params": { + "celsius": 25.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 466.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 5.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setTargetTemperature", + "params": { + "celsius": 38.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "params": { + "celsius": 38.0 + }, + "result": { + "targetLidTemperature": 38.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "params": { + "celsius": 28.0, + "holdTimeSeconds": 5.0 + }, + "result": { + "targetBlockTemperature": 28.0 + }, + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateBlock", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 137.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 280.53, + "y": 255.08999999999997, + "z": 87.51 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 331.785, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 146.88, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.255, + "y": 75.365, + "z": 73.84500000000001 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 350.0 + }, + "result": { + "pipetteRetracted": true + }, + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "params": { + "seconds": 5.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 128.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 11.34, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -22.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 315.0, + "y": 125.5, + "z": 18.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 363.89500000000004, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.780000000000001 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 324.04, + "z": 100.08 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "params": { + "addressableAreaName": "fixedTrash", + "alternateDropLocation": true, + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "result": { + "position": { + "x": 331.785, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "params": {}, + "result": {}, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_TC_HS_TM_2_16_SmokeTestV3.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", + "loadName": "opentrons_96_well_aluminum_block", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "displayName": "Temperature-Controlled plate", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_96_pcr_adapter/1", + "loadName": "opentrons_96_pcr_adapter", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "custom_beta/cpx_4_tuberack_100ul/1", + "displayName": "4 custom tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + } + ], + "liquids": [ + { + "description": "H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + }, + { + "description": "C₃H₆O", + "displayColor": "#38588a", + "displayName": "acetone" + } + ], + "metadata": { + "author": "Opentrons Engineering ", + "description": "Description of the protocol that is longish \n has \n returns and \n emoji 😊 ⬆️ ", + "protocolName": "🛠️ 2.16 Smoke Test V3 🪄", + "source": "Software Testing Team" + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + { + "location": { + "slotName": "9" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume][OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume][OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume].json new file mode 100644 index 00000000000..0596bb920a3 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume][OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume].json @@ -0,0 +1,2787 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "setRailLights", + "params": { + "on": true + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 20.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 164.74, + "z": 64.69 + }, + "tipDiameter": 3.27, + "tipLength": 30.950000000000003, + "tipVolume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 0.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -25.85 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 42.78, + "z": 5.55 + }, + "volume": 0.0 + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 16 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_TC_HS_TM_2_16_aspirateDispenseMix0Volume.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "3" + } + } + ], + "liquids": [ + { + "description": "H₂O", + "displayColor": "#42AB2D", + "displayName": "water" + } + ], + "metadata": { + "author": "Opentrons Engineering ", + "protocolName": "API 2.16 Aspirate Dispense Mix 0 Volume", + "source": "Software Testing Team" + }, + "modules": [], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p20_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release][OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release][OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release].json new file mode 100644 index 00000000000..f8f4aa80670 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release][OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release].json @@ -0,0 +1,9839 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 20 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_20ul", + "tipLength": 39.2, + "tipOverlap": 8.25 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 20, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "9" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "4" + }, + "model": "temperatureModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV2" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": -0.15, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV1", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "temperatureModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Temperature-Controlled plate", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.45, + "zDimension": 21.2 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.2, + "z": 6.42 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.2, + "z": 6.42 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.2, + "z": 6.42 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.2, + "z": 6.42 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.2, + "z": 6.42 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.2, + "z": 6.42 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.2, + "z": 6.42 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.2, + "z": 6.42 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.2, + "z": 6.42 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.2, + "z": 6.42 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.2, + "z": 6.42 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.2, + "z": 6.42 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.2, + "z": 6.42 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.2, + "z": 6.42 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.2, + "z": 6.42 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.2, + "z": 6.42 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.2, + "z": 6.42 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.2, + "z": 6.42 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.2, + "z": 6.42 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.2, + "z": 6.42 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.2, + "z": 6.42 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.2, + "z": 6.42 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.2, + "z": 6.42 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.2, + "z": 6.42 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.2, + "z": 6.42 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.2, + "z": 6.42 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.2, + "z": 6.42 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.2, + "z": 6.42 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.2, + "z": 6.42 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.2, + "z": 6.42 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.2, + "z": 6.42 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.2, + "z": 6.42 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.2, + "z": 6.42 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.2, + "z": 6.42 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.2, + "z": 6.42 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.2, + "z": 6.42 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.2, + "z": 6.42 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.2, + "z": 6.42 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.2, + "z": 6.42 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.2, + "z": 6.42 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.2, + "z": 6.42 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.2, + "z": 6.42 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.2, + "z": 6.42 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.2, + "z": 6.42 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.2, + "z": 6.42 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.2, + "z": 6.42 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.2, + "z": 6.42 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.2, + "z": 6.42 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.2, + "z": 6.42 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.2, + "z": 6.42 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.2, + "z": 6.42 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.2, + "z": 6.42 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.2, + "z": 6.42 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.2, + "z": 6.42 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.2, + "z": 6.42 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.2, + "z": 6.42 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.2, + "z": 6.42 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.2, + "z": 6.42 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.2, + "z": 6.42 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.2, + "z": 6.42 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.2, + "z": 6.42 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.2, + "z": 6.42 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.2, + "z": 6.42 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.2, + "z": 6.42 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.2, + "z": 6.42 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.2, + "z": 6.42 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.2, + "z": 6.42 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.2, + "z": 6.42 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.2, + "z": 6.42 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.2, + "z": 6.42 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.2, + "z": 6.42 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.2, + "z": 6.42 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.2, + "z": 6.42 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.2, + "z": 6.42 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.2, + "z": 6.42 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.2, + "z": 6.42 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.2, + "z": 6.42 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.2, + "z": 6.42 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.2, + "z": 6.42 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.2, + "z": 6.42 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.2, + "z": 6.42 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.2, + "z": 6.42 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.2, + "z": 6.42 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.2, + "z": 6.42 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.2, + "z": 6.42 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.2, + "z": 6.42 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.2, + "z": 6.42 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.2, + "z": 6.42 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.2, + "z": 6.42 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.2, + "z": 6.42 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.2, + "z": 6.42 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.2, + "z": 6.42 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.2, + "z": 6.42 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.2, + "z": 6.42 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.2, + "z": 6.42 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.2, + "z": 6.42 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "4 tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "cpx", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127, + "yDimension": 85, + "zDimension": 40 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "cpx", + "brandId": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "A2", + "B1", + "B2" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "cpx 4 Tube Rack with cpx 0.1 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1" + ], + [ + "A2", + "B2" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "cpx_4_tuberack_100ul", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 65, + "z": 17 + }, + "A2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 65, + "z": 17 + }, + "B1": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 20, + "y": 35, + "z": 17 + }, + "B2": { + "depth": 23, + "diameter": 20, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50, + "y": 35, + "z": 17 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 19.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 19.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 7.56, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Waiting for Temperature Module to reach temperature 25.0 °C (rounded off to nearest integer)", + "legacyCommandType": "command.TEMPDECK_AWAIT_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Delaying for 0 minutes and 0.3 seconds", + "legacyCommandType": "command.DELAY" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Disengaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_DISENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Opening Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_OPEN" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Closing Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_CLOSE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler lid temperature to 38.0 °C", + "legacyCommandType": "command.THERMOCYCLER_SET_LID_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Setting Thermocycler well block temperature to 28.0 °C with a hold time of 5 seconds", + "legacyCommandType": "command.THERMOCYCLER_SET_BLOCK_TEMP" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Thermocycler well block heating", + "legacyCommandType": "command.THERMOCYCLER_DEACTIVATE_BLOCK" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Deactivating Thermocycler lid heating", + "legacyCommandType": "command.THERMOCYCLER_DEACTIVATE_LID" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Opening Thermocycler lid", + "legacyCommandType": "command.THERMOCYCLER_OPEN" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 18.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 18.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 7.56, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 15.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 30.950000000000003, + "tipVolume": 20 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 15.12, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 11.34, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 10.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 60.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 13 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P20S_TC_MM_TM_2_13_Smoke620Release.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "300ul tips", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_20ul/1", + "displayName": "20ul tips", + "loadName": "opentrons_96_tiprack_20ul", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1", + "displayName": "Temperature-Controlled plate", + "loadName": "opentrons_96_aluminumblock_nest_wellplate_100ul", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + }, + { + "definitionUri": "custom_beta/cpx_4_tuberack_100ul/1", + "displayName": "4 tubes", + "loadName": "cpx_4_tuberack_100ul", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "displayName": "logo destination", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "3" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "displayName": "dye container", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.13", + "author": "Opentrons Engineering ", + "description": "Description of the protocol that is longish \n has \n returns and \n emoji 😊 ⬆️ ", + "protocolName": "🛠 Logo-Modules-CustomLabware 🛠", + "source": "Software Testing Team" + }, + "modules": [ + { + "location": { + "slotName": "9" + }, + "model": "magneticModuleV2" + }, + { + "location": { + "slotName": "4" + }, + "model": "temperatureModuleV1" + }, + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p20_single_gen2" + }, + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer][OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer][OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer].json new file mode 100644 index 00000000000..ba5bd4dd683 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer][OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer].json @@ -0,0 +1,6407 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 12.0, + "y": 8.75, + "z": 68.275 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 82.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Heater-Shaker Module GEN1", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -0.125, + "y": 1.125, + "z": 68.275 + }, + "model": "heaterShakerModuleV1", + "moduleType": "heaterShakerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0 + ], + [ + -1, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -49.325, + 0, + 0, + 1 + ], + [ + -1.125, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.125, + 1 + ] + ] + } + } + } + }, + "model": "heaterShakerModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 42.25 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deepwell Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 4.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Single", + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/hardware-modules/products/aluminum-block-set" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 42 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "generic", + "brandId": [], + "links": [] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Generic 2 mL Screwcap", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "B1", + "B2", + "B3", + "B4", + "B5", + "B6", + "C1", + "C2", + "C3", + "C4", + "C5", + "C6", + "D1", + "D2", + "D3", + "D4", + "D5", + "D6" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1" + ], + [ + "A2", + "B2", + "C2", + "D2" + ], + [ + "A3", + "B3", + "C3", + "D3" + ], + [ + "A4", + "B4", + "C4", + "D4" + ], + [ + "A5", + "B5", + "C5", + "D5" + ], + [ + "A6", + "B6", + "C6", + "D6" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 68.63, + "z": 6.7 + }, + "A2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 68.63, + "z": 6.7 + }, + "A3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 68.63, + "z": 6.7 + }, + "A4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 68.63, + "z": 6.7 + }, + "A5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 68.63, + "z": 6.7 + }, + "A6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 68.63, + "z": 6.7 + }, + "B1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 51.38, + "z": 6.7 + }, + "B2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 51.38, + "z": 6.7 + }, + "B3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 51.38, + "z": 6.7 + }, + "B4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 51.38, + "z": 6.7 + }, + "B5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 51.38, + "z": 6.7 + }, + "B6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 51.38, + "z": 6.7 + }, + "C1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 34.13, + "z": 6.7 + }, + "C2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 34.13, + "z": 6.7 + }, + "C3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 34.13, + "z": 6.7 + }, + "C4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 34.13, + "z": 6.7 + }, + "C5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 34.13, + "z": 6.7 + }, + "C6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 34.13, + "z": 6.7 + }, + "D1": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 20.75, + "y": 16.88, + "z": 6.7 + }, + "D2": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 38, + "y": 16.88, + "z": 6.7 + }, + "D3": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 55.25, + "y": 16.88, + "z": 6.7 + }, + "D4": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 72.5, + "y": 16.88, + "z": 6.7 + }, + "D5": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 89.75, + "y": 16.88, + "z": 6.7 + }, + "D6": { + "depth": 42, + "diameter": 8.5, + "shape": "circular", + "totalLiquidVolume": 2000, + "x": 107, + "y": 16.88, + "z": 6.7 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Multi", + "loadName": "biorad_96_wellplate_200ul_pcr", + "location": { + "slotName": "9" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "hsp9601" + ], + "links": [ + "http://www.bio-rad.com/en-us/sku/hsp9601-hard-shell-96-well-pcr-plates-low-profile-thin-wall-skirted-white-clear?ID=hsp9601" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.06 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "biorad_96_wellplate_200ul_pcr", + "magneticModuleEngageHeight": 18 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.25 + }, + "A10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.25 + }, + "A11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.25 + }, + "A12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.25 + }, + "A2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.25 + }, + "A3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.25 + }, + "A4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.25 + }, + "A5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.25 + }, + "A6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.25 + }, + "A7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.25 + }, + "A8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.25 + }, + "A9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.25 + }, + "B1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.25 + }, + "B10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.25 + }, + "B11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.25 + }, + "B12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.25 + }, + "B2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.25 + }, + "B3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.25 + }, + "B4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.25 + }, + "B5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.25 + }, + "B6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.25 + }, + "B7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.25 + }, + "B8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.25 + }, + "B9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.25 + }, + "C1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.25 + }, + "C10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.25 + }, + "C11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.25 + }, + "C12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.25 + }, + "C2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.25 + }, + "C3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.25 + }, + "C4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.25 + }, + "C5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.25 + }, + "C6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.25 + }, + "C7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.25 + }, + "C8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.25 + }, + "C9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.25 + }, + "D1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.25 + }, + "D10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.25 + }, + "D11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.25 + }, + "D12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.25 + }, + "D2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.25 + }, + "D3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.25 + }, + "D4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.25 + }, + "D5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.25 + }, + "D6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.25 + }, + "D7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.25 + }, + "D8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.25 + }, + "D9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.25 + }, + "E1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.25 + }, + "E10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.25 + }, + "E11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.25 + }, + "E12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.25 + }, + "E2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.25 + }, + "E3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.25 + }, + "E4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.25 + }, + "E5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.25 + }, + "E6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.25 + }, + "E7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.25 + }, + "E8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.25 + }, + "E9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.25 + }, + "F1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.25 + }, + "F10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.25 + }, + "F11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.25 + }, + "F12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.25 + }, + "F2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.25 + }, + "F3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.25 + }, + "F4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.25 + }, + "F5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.25 + }, + "F6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.25 + }, + "F7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.25 + }, + "F8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.25 + }, + "F9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.25 + }, + "G1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.25 + }, + "G10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.25 + }, + "G11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.25 + }, + "G12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.25 + }, + "G2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.25 + }, + "G3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.25 + }, + "G4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.25 + }, + "G5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.25 + }, + "G6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.25 + }, + "G7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.25 + }, + "G8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.25 + }, + "G9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.25 + }, + "H1": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.25 + }, + "H10": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.25 + }, + "H11": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.25 + }, + "H12": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.25 + }, + "H2": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.25 + }, + "H3": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.25 + }, + "H4": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.25 + }, + "H5": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.25 + }, + "H6": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.25 + }, + "H7": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.25 + }, + "H8": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.25 + }, + "H9": { + "depth": 14.81, + "diameter": 5.46, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.25 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Mis", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "7" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Agilent", + "brandId": [ + "201252-100" + ], + "links": [ + "https://www.agilent.com/store/en_US/Prod-201252-100/201252-100" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.57, + "zDimension": 44.04 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "Agilent 1 Well Reservoir 290 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "agilent_1_reservoir_290ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.22, + "shape": "rectangular", + "totalLiquidVolume": 290000, + "x": 63.88, + "xDimension": 108, + "y": 42.785, + "yDimension": 72, + "z": 4.82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 200.0, + "A10": 200.0, + "A11": 200.0, + "A12": 200.0, + "A2": 200.0, + "A3": 200.0, + "A4": 200.0, + "A5": 200.0, + "A6": 200.0, + "A7": 200.0, + "A8": 200.0, + "A9": 200.0, + "B1": 200.0, + "B10": 200.0, + "B11": 200.0, + "B12": 200.0, + "B2": 200.0, + "B3": 200.0, + "B4": 200.0, + "B5": 200.0, + "B6": 200.0, + "B7": 200.0, + "B8": 200.0, + "B9": 200.0, + "C1": 200.0, + "C10": 200.0, + "C11": 200.0, + "C12": 200.0, + "C2": 200.0, + "C3": 200.0, + "C4": 200.0, + "C5": 200.0, + "C6": 200.0, + "C7": 200.0, + "C8": 200.0, + "C9": 200.0, + "D1": 200.0, + "D10": 200.0, + "D11": 200.0, + "D12": 200.0, + "D2": 200.0, + "D3": 200.0, + "D4": 200.0, + "D5": 200.0, + "D6": 200.0, + "D7": 200.0, + "D8": 200.0, + "D9": 200.0, + "E1": 200.0, + "E10": 200.0, + "E11": 200.0, + "E12": 200.0, + "E2": 200.0, + "E3": 200.0, + "E4": 200.0, + "E5": 200.0, + "E6": 200.0, + "E7": 200.0, + "E8": 200.0, + "E9": 200.0, + "F1": 200.0, + "F10": 200.0, + "F11": 200.0, + "F12": 200.0, + "F2": 200.0, + "F3": 200.0, + "F4": 200.0, + "F5": 200.0, + "F6": 200.0, + "F7": 200.0, + "F8": 200.0, + "F9": 200.0, + "G1": 200.0, + "G10": 200.0, + "G11": 200.0, + "G12": 200.0, + "G2": 200.0, + "G3": 200.0, + "G4": 200.0, + "G5": 200.0, + "G6": 200.0, + "G7": 200.0, + "G8": 200.0, + "G9": 200.0, + "H1": 200.0, + "H10": 200.0, + "H11": 200.0, + "H12": 200.0, + "H2": 200.0, + "H3": 200.0, + "H4": 200.0, + "H5": 200.0, + "H6": 200.0, + "H7": 200.0, + "H8": 200.0, + "H9": 200.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "params": { + "volumeByWell": { + "A1": 100.0, + "A2": 100.0, + "A3": 100.0, + "A4": 100.0, + "A5": 100.0, + "A6": 100.0, + "B1": 100.0, + "B2": 100.0, + "B3": 100.0, + "B4": 100.0, + "B5": 100.0, + "B6": 100.0, + "C1": 100.0, + "C2": 100.0, + "C3": 100.0, + "C4": 100.0, + "C5": 100.0, + "C6": 100.0, + "D1": 100.0, + "D2": 100.0, + "D3": 100.0, + "D4": 100.0, + "D5": 100.0, + "D6": 100.0 + } + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 279.38, + "y": 255.24, + "z": 2.25 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 288.38, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 285.75, + "y": 159.13, + "z": 7.7 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 288.38, + "y": 65.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 285.75, + "y": 141.88, + "z": 7.7 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.175, + "y": 66.275, + "z": 73.025 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 288.38, + "y": 56.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 285.75, + "y": 124.63, + "z": 7.7 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.175, + "y": 57.275, + "z": 73.025 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 288.38, + "y": 47.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 285.75, + "y": 107.38, + "z": 7.7 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.175, + "y": 48.275, + "z": 73.025 + }, + "volume": 75.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setTargetTemperature", + "params": { + "celsius": 80.0 + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "params": { + "rpm": 400.0 + }, + "result": { + "pipetteRetracted": false + }, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/waitForTemperature", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateHeater", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 297.38, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.175, + "y": 75.275, + "z": 73.525 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 94.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 288.38, + "y": 38.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.175, + "y": 75.275, + "z": 73.525 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 288.38, + "y": 29.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.175, + "y": 66.275, + "z": 73.525 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 288.38, + "y": 20.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.175, + "y": 57.275, + "z": 73.525 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 288.38, + "y": 11.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.175, + "y": 48.275, + "z": 73.525 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 70.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 306.38, + "y": 74.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 300.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.32 + }, + "volume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 306.38, + "y": 65.24, + "z": 64.69 + }, + "tipDiameter": 5.23, + "tipLength": 51.099999999999994, + "tipVolume": 300.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 270.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 270.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.175, + "y": 75.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.175, + "y": 66.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.175, + "y": 57.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.175, + "y": 48.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.175, + "y": 39.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 46.43, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 170.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 63.88, + "y": 223.785, + "z": 5.82 + }, + "volume": 170.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.175, + "y": 30.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.175, + "y": 21.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.5 + }, + "origin": "bottom" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.175, + "y": 12.275, + "z": 73.025 + }, + "volume": 50.0 + }, + "status": "succeeded" + }, + { + "commandType": "blowout", + "params": { + "flowRate": 46.43, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0.0 + }, + "origin": "bottom" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 347.84000000000003, + "y": 351.5, + "z": 82.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 6 + }, + "errors": [], + "files": [ + { + "name": "OT2_P300M_P300S_HS_6_1_HS_NormalUseWithTransfer.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + } + }, + { + "definitionUri": "opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1", + "displayName": "H/S", + "loadName": "opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep", + "location": {} + }, + { + "definitionUri": "opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1", + "displayName": "Single", + "loadName": "opentrons_24_aluminumblock_generic_2ml_screwcap", + "location": { + "slotName": "6" + } + }, + { + "definitionUri": "opentrons/biorad_96_wellplate_200ul_pcr/1", + "displayName": "Multi", + "loadName": "biorad_96_wellplate_200ul_pcr", + "location": { + "slotName": "9" + } + }, + { + "definitionUri": "opentrons/agilent_1_reservoir_290ml/1", + "displayName": "Mis", + "loadName": "agilent_1_reservoir_290ml", + "location": { + "slotName": "7" + } + } + ], + "liquids": [ + { + "description": "", + "displayColor": "#b925ff", + "displayName": "L1" + }, + { + "description": "", + "displayColor": "#ffd600", + "displayName": "L2" + } + ], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "H/S normal use", + "subcategory": null, + "tags": [] + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "heaterShakerModuleV1" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_multi_gen2" + }, + { + "mount": "right", + "pipetteName": "p300_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SG1_None_5_2_6_Gen1PipetteSimple][OT2_P300SG1_None_5_2_6_Gen1PipetteSimple].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SG1_None_5_2_6_Gen1PipetteSimple][OT2_P300SG1_None_5_2_6_Gen1PipetteSimple].json new file mode 100644 index 00000000000..91fe817101f --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SG1_None_5_2_6_Gen1PipetteSimple][OT2_P300SG1_None_5_2_6_Gen1PipetteSimple].json @@ -0,0 +1,5778 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_single" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons" + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 172.86, + "yDimension": 165.86, + "zDimension": 82 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "trash", + "displayName": "Opentrons Fixed Trash", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trash", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_1_trash_1100ml_fixed", + "quirks": [ + "centerMultichannelOnWells", + "fixedTrash", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 0, + "shape": "rectangular", + "totalLiquidVolume": 1100000, + "x": 82.84, + "xDimension": 107.11, + "y": 80, + "yDimension": 165.67, + "z": 82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 10 µL", + "loadName": "opentrons_96_tiprack_10ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-10ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.69 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 10 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_10ul", + "tipLength": 39.2, + "tipOverlap": 3.29 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 74.24, + "z": 25.49 + }, + "A10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 74.24, + "z": 25.49 + }, + "A11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 74.24, + "z": 25.49 + }, + "A12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 74.24, + "z": 25.49 + }, + "A2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 74.24, + "z": 25.49 + }, + "A3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 74.24, + "z": 25.49 + }, + "A4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 74.24, + "z": 25.49 + }, + "A5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 74.24, + "z": 25.49 + }, + "A6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 74.24, + "z": 25.49 + }, + "A7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 74.24, + "z": 25.49 + }, + "A8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 74.24, + "z": 25.49 + }, + "A9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 74.24, + "z": 25.49 + }, + "B1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 65.24, + "z": 25.49 + }, + "B10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 65.24, + "z": 25.49 + }, + "B11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 65.24, + "z": 25.49 + }, + "B12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 65.24, + "z": 25.49 + }, + "B2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 65.24, + "z": 25.49 + }, + "B3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 65.24, + "z": 25.49 + }, + "B4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 65.24, + "z": 25.49 + }, + "B5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 65.24, + "z": 25.49 + }, + "B6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 65.24, + "z": 25.49 + }, + "B7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 65.24, + "z": 25.49 + }, + "B8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 65.24, + "z": 25.49 + }, + "B9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 65.24, + "z": 25.49 + }, + "C1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 56.24, + "z": 25.49 + }, + "C10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 56.24, + "z": 25.49 + }, + "C11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 56.24, + "z": 25.49 + }, + "C12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 56.24, + "z": 25.49 + }, + "C2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 56.24, + "z": 25.49 + }, + "C3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 56.24, + "z": 25.49 + }, + "C4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 56.24, + "z": 25.49 + }, + "C5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 56.24, + "z": 25.49 + }, + "C6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 56.24, + "z": 25.49 + }, + "C7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 56.24, + "z": 25.49 + }, + "C8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 56.24, + "z": 25.49 + }, + "C9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 56.24, + "z": 25.49 + }, + "D1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 47.24, + "z": 25.49 + }, + "D10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 47.24, + "z": 25.49 + }, + "D11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 47.24, + "z": 25.49 + }, + "D12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 47.24, + "z": 25.49 + }, + "D2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 47.24, + "z": 25.49 + }, + "D3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 47.24, + "z": 25.49 + }, + "D4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 47.24, + "z": 25.49 + }, + "D5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 47.24, + "z": 25.49 + }, + "D6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 47.24, + "z": 25.49 + }, + "D7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 47.24, + "z": 25.49 + }, + "D8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 47.24, + "z": 25.49 + }, + "D9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 47.24, + "z": 25.49 + }, + "E1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 38.24, + "z": 25.49 + }, + "E10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 38.24, + "z": 25.49 + }, + "E11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 38.24, + "z": 25.49 + }, + "E12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 38.24, + "z": 25.49 + }, + "E2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 38.24, + "z": 25.49 + }, + "E3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 38.24, + "z": 25.49 + }, + "E4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 38.24, + "z": 25.49 + }, + "E5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 38.24, + "z": 25.49 + }, + "E6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 38.24, + "z": 25.49 + }, + "E7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 38.24, + "z": 25.49 + }, + "E8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 38.24, + "z": 25.49 + }, + "E9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 38.24, + "z": 25.49 + }, + "F1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 29.24, + "z": 25.49 + }, + "F10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 29.24, + "z": 25.49 + }, + "F11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 29.24, + "z": 25.49 + }, + "F12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 29.24, + "z": 25.49 + }, + "F2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 29.24, + "z": 25.49 + }, + "F3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 29.24, + "z": 25.49 + }, + "F4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 29.24, + "z": 25.49 + }, + "F5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 29.24, + "z": 25.49 + }, + "F6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 29.24, + "z": 25.49 + }, + "F7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 29.24, + "z": 25.49 + }, + "F8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 29.24, + "z": 25.49 + }, + "F9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 29.24, + "z": 25.49 + }, + "G1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 20.24, + "z": 25.49 + }, + "G10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 20.24, + "z": 25.49 + }, + "G11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 20.24, + "z": 25.49 + }, + "G12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 20.24, + "z": 25.49 + }, + "G2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 20.24, + "z": 25.49 + }, + "G3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 20.24, + "z": 25.49 + }, + "G4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 20.24, + "z": 25.49 + }, + "G5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 20.24, + "z": 25.49 + }, + "G6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 20.24, + "z": 25.49 + }, + "G7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 20.24, + "z": 25.49 + }, + "G8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 20.24, + "z": 25.49 + }, + "G9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 20.24, + "z": 25.49 + }, + "H1": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 14.38, + "y": 11.24, + "z": 25.49 + }, + "H10": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 95.38, + "y": 11.24, + "z": 25.49 + }, + "H11": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 104.38, + "y": 11.24, + "z": 25.49 + }, + "H12": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 113.38, + "y": 11.24, + "z": 25.49 + }, + "H2": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 23.38, + "y": 11.24, + "z": 25.49 + }, + "H3": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 32.38, + "y": 11.24, + "z": 25.49 + }, + "H4": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 41.38, + "y": 11.24, + "z": 25.49 + }, + "H5": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 50.38, + "y": 11.24, + "z": 25.49 + }, + "H6": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 59.38, + "y": 11.24, + "z": 25.49 + }, + "H7": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 68.38, + "y": 11.24, + "z": 25.49 + }, + "H8": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 77.38, + "y": 11.24, + "z": 25.49 + }, + "H9": { + "depth": 39.2, + "diameter": 3.27, + "shape": "circular", + "totalLiquidVolume": 10, + "x": 86.38, + "y": 11.24, + "z": 25.49 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "NEST 1 Well Reservoir 195 mL", + "loadName": "nest_1_reservoir_195ml", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360103" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 1 Well Reservoir 195 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_1_reservoir_195ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 25, + "shape": "rectangular", + "totalLiquidVolume": 195000, + "x": 63.88, + "xDimension": 106.8, + "y": 42.74, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "USA Scientific 96 Deep Well Plate 2.4 mL", + "loadName": "usascientific_96_wellplate_2.4ml_deep", + "location": { + "slotName": "4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "USA Scientific", + "brandId": [ + "1896-2000" + ], + "links": [ + "https://www.usascientific.com/2ml-deep96-well-plateone-bulk.aspx" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.8, + "yDimension": 85.5, + "zDimension": 44.1 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "u" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "USA Scientific 96 Deep Well Plate 2.4 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "usascientific_96_wellplate_2.4ml_deep", + "magneticModuleEngageHeight": 14.94 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "A9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 74.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "B9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 65.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "C9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 56.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "D9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 47.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "E9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 38.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "F9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 29.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "G9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 20.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H1": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 14.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H10": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 95.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H11": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 104.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H12": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 113.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H2": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 23.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H3": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 32.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H4": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 41.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H5": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 50.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H6": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 59.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H7": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 68.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H8": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 77.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + }, + "H9": { + "depth": 41.3, + "shape": "rectangular", + "totalLiquidVolume": 2400, + "x": 86.4, + "xDimension": 8.2, + "y": 11.2, + "yDimension": 8.2, + "z": 2.8 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "6" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.83, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 150.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 300.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 3 + }, + "errors": [], + "files": [ + { + "name": "OT2_P300SG1_None_5_2_6_Gen1PipetteSimple.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_10ul/1", + "displayName": "Opentrons 96 Tip Rack 10 µL", + "loadName": "opentrons_96_tiprack_10ul", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/nest_1_reservoir_195ml/1", + "displayName": "NEST 1 Well Reservoir 195 mL", + "loadName": "nest_1_reservoir_195ml", + "location": { + "slotName": "5" + } + }, + { + "definitionUri": "opentrons/usascientific_96_wellplate_2.4ml_deep/1", + "displayName": "USA Scientific 96 Deep Well Plate 2.4 mL", + "loadName": "usascientific_96_wellplate_2.4ml_deep", + "location": { + "slotName": "4" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "6" + } + } + ], + "liquids": [], + "metadata": { + "author": "", + "category": null, + "description": "", + "protocolName": "gen1 pipette", + "subcategory": null, + "tags": [] + }, + "modules": [], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p300_single" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase][OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase][OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase].json new file mode 100644 index 00000000000..43b6661ce7f --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase][OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase].json @@ -0,0 +1,1577 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": 0.125, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV1", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "magneticModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "4" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "custom", + "params": { + "legacyCommandText": "Engaging Magnetic Module", + "legacyCommandType": "command.MAGDECK_ENGAGE" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 2 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300SLeft_MM1_MM_2_2_EngageMagHeightFromBase.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.2" + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV1" + }, + { + "location": { + "slotName": "4" + }, + "model": "magneticModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM1_MM_TM_2_3_Mix][OT2_P300SLeft_MM1_MM_TM_2_3_Mix].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM1_MM_TM_2_3_Mix][OT2_P300SLeft_MM1_MM_TM_2_3_Mix].json new file mode 100644 index 00000000000..864e66a8cd9 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM1_MM_TM_2_3_Mix][OT2_P300SLeft_MM1_MM_TM_2_3_Mix].json @@ -0,0 +1,3350 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "corning_96_wellplate_360ul_flat", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Corning", + "brandId": [ + "2503", + "2507", + "2509", + "3300", + "3361", + "3362", + "3370", + "3474", + "3585", + "3590", + "3591", + "3595", + "3596", + "3598", + "3599", + "3600", + "3628", + "3641", + "3650", + "3665", + "3912", + "3915", + "3916", + "3917", + "3922", + "3925", + "3977", + "9017", + "9018" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Corning%C2%AE-96-well-Solid-Black-and-White-Polystyrene-Microplates/p/corning96WellSolidBlackAndWhitePolystyreneMicroplates" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Corning 96 Well Plate 360 µL Flat", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "corning_96_wellplate_360ul_flat" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 74.24, + "z": 3.55 + }, + "A10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 74.24, + "z": 3.55 + }, + "A11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 74.24, + "z": 3.55 + }, + "A12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 74.24, + "z": 3.55 + }, + "A2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 74.24, + "z": 3.55 + }, + "A3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 74.24, + "z": 3.55 + }, + "A4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 74.24, + "z": 3.55 + }, + "A5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 74.24, + "z": 3.55 + }, + "A6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 74.24, + "z": 3.55 + }, + "A7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 74.24, + "z": 3.55 + }, + "A8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 74.24, + "z": 3.55 + }, + "A9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 74.24, + "z": 3.55 + }, + "B1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 65.24, + "z": 3.55 + }, + "B10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 65.24, + "z": 3.55 + }, + "B11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 65.24, + "z": 3.55 + }, + "B12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 65.24, + "z": 3.55 + }, + "B2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 65.24, + "z": 3.55 + }, + "B3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 65.24, + "z": 3.55 + }, + "B4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 65.24, + "z": 3.55 + }, + "B5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 65.24, + "z": 3.55 + }, + "B6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 65.24, + "z": 3.55 + }, + "B7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 65.24, + "z": 3.55 + }, + "B8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 65.24, + "z": 3.55 + }, + "B9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 65.24, + "z": 3.55 + }, + "C1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 56.24, + "z": 3.55 + }, + "C10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 56.24, + "z": 3.55 + }, + "C11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 56.24, + "z": 3.55 + }, + "C12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 56.24, + "z": 3.55 + }, + "C2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 56.24, + "z": 3.55 + }, + "C3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 56.24, + "z": 3.55 + }, + "C4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 56.24, + "z": 3.55 + }, + "C5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 56.24, + "z": 3.55 + }, + "C6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 56.24, + "z": 3.55 + }, + "C7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 56.24, + "z": 3.55 + }, + "C8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 56.24, + "z": 3.55 + }, + "C9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 56.24, + "z": 3.55 + }, + "D1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 47.24, + "z": 3.55 + }, + "D10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 47.24, + "z": 3.55 + }, + "D11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 47.24, + "z": 3.55 + }, + "D12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 47.24, + "z": 3.55 + }, + "D2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 47.24, + "z": 3.55 + }, + "D3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 47.24, + "z": 3.55 + }, + "D4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 47.24, + "z": 3.55 + }, + "D5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 47.24, + "z": 3.55 + }, + "D6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 47.24, + "z": 3.55 + }, + "D7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 47.24, + "z": 3.55 + }, + "D8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 47.24, + "z": 3.55 + }, + "D9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 47.24, + "z": 3.55 + }, + "E1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 38.24, + "z": 3.55 + }, + "E10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 38.24, + "z": 3.55 + }, + "E11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 38.24, + "z": 3.55 + }, + "E12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 38.24, + "z": 3.55 + }, + "E2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 38.24, + "z": 3.55 + }, + "E3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 38.24, + "z": 3.55 + }, + "E4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 38.24, + "z": 3.55 + }, + "E5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 38.24, + "z": 3.55 + }, + "E6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 38.24, + "z": 3.55 + }, + "E7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 38.24, + "z": 3.55 + }, + "E8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 38.24, + "z": 3.55 + }, + "E9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 38.24, + "z": 3.55 + }, + "F1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 29.24, + "z": 3.55 + }, + "F10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 29.24, + "z": 3.55 + }, + "F11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 29.24, + "z": 3.55 + }, + "F12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 29.24, + "z": 3.55 + }, + "F2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 29.24, + "z": 3.55 + }, + "F3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 29.24, + "z": 3.55 + }, + "F4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 29.24, + "z": 3.55 + }, + "F5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 29.24, + "z": 3.55 + }, + "F6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 29.24, + "z": 3.55 + }, + "F7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 29.24, + "z": 3.55 + }, + "F8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 29.24, + "z": 3.55 + }, + "F9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 29.24, + "z": 3.55 + }, + "G1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 20.24, + "z": 3.55 + }, + "G10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 20.24, + "z": 3.55 + }, + "G11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 20.24, + "z": 3.55 + }, + "G12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 20.24, + "z": 3.55 + }, + "G2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 20.24, + "z": 3.55 + }, + "G3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 20.24, + "z": 3.55 + }, + "G4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 20.24, + "z": 3.55 + }, + "G5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 20.24, + "z": 3.55 + }, + "G6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 20.24, + "z": 3.55 + }, + "G7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 20.24, + "z": 3.55 + }, + "G8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 20.24, + "z": 3.55 + }, + "G9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 20.24, + "z": 3.55 + }, + "H1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 11.24, + "z": 3.55 + }, + "H10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 11.24, + "z": 3.55 + }, + "H11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 11.24, + "z": 3.55 + }, + "H12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 11.24, + "z": 3.55 + }, + "H2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 11.24, + "z": 3.55 + }, + "H3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 11.24, + "z": 3.55 + }, + "H4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 11.24, + "z": 3.55 + }, + "H5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 11.24, + "z": 3.55 + }, + "H6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 11.24, + "z": 3.55 + }, + "H7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 11.24, + "z": 3.55 + }, + "H8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 11.24, + "z": 3.55 + }, + "H9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 11.24, + "z": 3.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV1" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN1", + "gripperOffsets": {}, + "labwareOffset": { + "x": 0.125, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV1", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": {} + }, + "model": "magneticModuleV1" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "4" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "6" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 3 + ], + "protocolType": "python" + }, + "errors": [], + "files": [ + { + "name": "OT2_P300SLeft_MM1_MM_TM_2_3_Mix.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/corning_96_wellplate_360ul_flat/1", + "loadName": "corning_96_wellplate_360ul_flat", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.3" + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV1" + }, + { + "location": { + "slotName": "4" + }, + "model": "magneticModuleV2" + }, + { + "location": { + "slotName": "6" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps][OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps][OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps].json new file mode 100644 index 00000000000..473fb658845 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps][OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps].json @@ -0,0 +1,2546 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 124.875, + "y": 2.75, + "z": 82.25 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 110.152, + "overLabwareHeight": 4.052 + }, + "displayName": "Magnetic Module GEN2", + "gripperOffsets": {}, + "labwareOffset": { + "x": -1.175, + "y": -0.125, + "z": 82.25 + }, + "model": "magneticModuleV2", + "moduleType": "magneticModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.3 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + 0, + 0, + 0.25 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "magneticModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "6" + }, + "model": "temperatureModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 11.7, + "y": 8.75, + "z": 80.09 + }, + "compatibleWith": [ + "temperatureModuleV1" + ], + "dimensions": { + "bareOverallHeight": 84.0, + "overLabwareHeight": 0.0 + }, + "displayName": "Temperature Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + }, + "labwareOffset": { + "x": -1.45, + "y": -0.15, + "z": 80.09 + }, + "model": "temperatureModuleV2", + "moduleType": "temperatureModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot2_short_trash": { + "3": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.15, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot2_standard": { + "3": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "6": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + }, + "9": { + "labwareOffset": [ + [ + -1, + -0.3, + 0, + 0 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + }, + "ot3_standard": { + "A1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "A3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "B3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "C3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D1": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + }, + "D3": { + "labwareOffset": [ + [ + -71.09, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0.15, + 1 + ], + [ + 0, + 0, + 1, + 1.45 + ] + ] + } + } + } + }, + "model": "temperatureModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons" + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 172.86, + "yDimension": 165.86, + "zDimension": 82 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1" + ] + } + ], + "metadata": { + "displayCategory": "trash", + "displayName": "Opentrons Fixed Trash", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ] + ], + "parameters": { + "format": "trash", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_1_trash_1100ml_fixed", + "quirks": [ + "centerMultichannelOnWells", + "fixedTrash", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 0, + "shape": "rectangular", + "totalLiquidVolume": 1100000, + "x": 82.84, + "xDimension": 107.11, + "y": 80, + "yDimension": 165.67, + "z": 82 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 46.43, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 100.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "protocolType": "json", + "schemaVersion": 4 + }, + "errors": [], + "files": [ + { + "name": "OT2_P300SLeft_MM_TM_TM_5_2_6_MOAMTemps.json", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "displayName": "Trash", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "displayName": "Opentrons 96 Tip Rack 300 µL", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "5" + } + } + ], + "liquids": [], + "metadata": { + "author": "AA BB", + "category": null, + "description": "Module - PUR", + "protocolName": "MoaM", + "subcategory": null, + "tags": [] + }, + "modules": [ + { + "location": { + "slotName": "1" + }, + "model": "magneticModuleV2" + }, + { + "location": { + "slotName": "3" + }, + "model": "temperatureModuleV2" + }, + { + "location": { + "slotName": "6" + }, + "model": "temperatureModuleV2" + } + ], + "pipettes": [ + { + "mount": "left", + "pipetteName": "p300_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300S_Thermocycler_Moam_Error][OT2_P300S_Thermocycler_Moam_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300S_Thermocycler_Moam_Error][OT2_P300S_Thermocycler_Moam_Error].json new file mode 100644 index 00000000000..008e0694a46 --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300S_Thermocycler_Moam_Error][OT2_P300S_Thermocycler_Moam_Error].json @@ -0,0 +1,2758 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadModule", + "params": { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "definition": { + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "compatibleWith": [], + "dimensions": { + "bareOverallHeight": 108.96, + "lidHeight": 61.7, + "overLabwareHeight": 0.0 + }, + "displayName": "Thermocycler Module GEN2", + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 5.6 + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 4.6 + } + } + }, + "labwareOffset": { + "x": 0.0, + "y": 68.8, + "z": 108.96 + }, + "model": "thermocyclerModuleV2", + "moduleType": "thermocyclerModuleType", + "otSharedSchema": "module/schemas/2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "cornerOffsetFromSlot": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ], + "labwareOffset": [ + [ + -98, + 0, + 0, + 1 + ], + [ + -20.005, + 0, + 0, + 1 + ], + [ + -0.84, + 0, + 0, + 1 + ], + [ + 0, + 0, + 0, + 1 + ] + ] + } + } + } + }, + "model": "thermocyclerModuleV2" + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {}, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 11 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "DeckConflictError [line 19]: thermocyclerModuleV2 in slot 7 prevents thermocyclerModuleV1 from using slot 7.", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "opentrons.motion_planning.deck_conflict.DeckConflictError: thermocyclerModuleV2 in slot 7 prevents thermocyclerModuleV1 from using slot 7.", + "errorCode": "4000", + "errorInfo": { + "args": "('thermocyclerModuleV2 in slot 7 prevents thermocyclerModuleV1 from using slot 7.',)", + "class": "DeckConflictError", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_P300S_Thermocycler_Moam_Error.py\", line 19, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/protocol_context.py\", line 779, in load_module\n module_core = self._core.load_module(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy/legacy_protocol_core.py\", line 333, in load_module\n self._deck_layout[resolved_location] = geometry\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy/deck.py\", line 177, in __setitem__\n deck_conflict.check(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/motion_planning/deck_conflict.py\", line 192, in check\n raise DeckConflictError(\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "OT2_P300S_Thermocycler_Moam_Error.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "3" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": {} + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.11" + }, + "modules": [ + { + "location": { + "slotName": "7" + }, + "model": "thermocyclerModuleV2" + } + ], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p300_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300S_Twinning_Error][OT2_P300S_Twinning_Error].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300S_Twinning_Error][OT2_P300S_Twinning_Error].json new file mode 100644 index 00000000000..8eba5b6559c --- /dev/null +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[OT2_P300S_Twinning_Error][OT2_P300S_Twinning_Error].json @@ -0,0 +1,2790 @@ +{ + "commands": [ + { + "commandType": "home", + "params": {}, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/opentrons-300ul-tips" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 64.49 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons OT-2 96 Tip Rack 300 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_96_tiprack_300ul", + "tipLength": 59.3, + "tipOverlap": 7.47 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 74.24, + "z": 5.39 + }, + "A10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 74.24, + "z": 5.39 + }, + "A11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 74.24, + "z": 5.39 + }, + "A12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 74.24, + "z": 5.39 + }, + "A2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 74.24, + "z": 5.39 + }, + "A3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 74.24, + "z": 5.39 + }, + "A4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 74.24, + "z": 5.39 + }, + "A5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 74.24, + "z": 5.39 + }, + "A6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 74.24, + "z": 5.39 + }, + "A7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 74.24, + "z": 5.39 + }, + "A8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 74.24, + "z": 5.39 + }, + "A9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 74.24, + "z": 5.39 + }, + "B1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 65.24, + "z": 5.39 + }, + "B10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 65.24, + "z": 5.39 + }, + "B11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 65.24, + "z": 5.39 + }, + "B12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 65.24, + "z": 5.39 + }, + "B2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 65.24, + "z": 5.39 + }, + "B3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 65.24, + "z": 5.39 + }, + "B4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 65.24, + "z": 5.39 + }, + "B5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 65.24, + "z": 5.39 + }, + "B6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 65.24, + "z": 5.39 + }, + "B7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 65.24, + "z": 5.39 + }, + "B8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 65.24, + "z": 5.39 + }, + "B9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 65.24, + "z": 5.39 + }, + "C1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 56.24, + "z": 5.39 + }, + "C10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 56.24, + "z": 5.39 + }, + "C11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 56.24, + "z": 5.39 + }, + "C12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 56.24, + "z": 5.39 + }, + "C2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 56.24, + "z": 5.39 + }, + "C3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 56.24, + "z": 5.39 + }, + "C4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 56.24, + "z": 5.39 + }, + "C5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 56.24, + "z": 5.39 + }, + "C6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 56.24, + "z": 5.39 + }, + "C7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 56.24, + "z": 5.39 + }, + "C8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 56.24, + "z": 5.39 + }, + "C9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 56.24, + "z": 5.39 + }, + "D1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 47.24, + "z": 5.39 + }, + "D10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 47.24, + "z": 5.39 + }, + "D11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 47.24, + "z": 5.39 + }, + "D12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 47.24, + "z": 5.39 + }, + "D2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 47.24, + "z": 5.39 + }, + "D3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 47.24, + "z": 5.39 + }, + "D4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 47.24, + "z": 5.39 + }, + "D5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 47.24, + "z": 5.39 + }, + "D6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 47.24, + "z": 5.39 + }, + "D7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 47.24, + "z": 5.39 + }, + "D8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 47.24, + "z": 5.39 + }, + "D9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 47.24, + "z": 5.39 + }, + "E1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 38.24, + "z": 5.39 + }, + "E10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 38.24, + "z": 5.39 + }, + "E11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 38.24, + "z": 5.39 + }, + "E12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 38.24, + "z": 5.39 + }, + "E2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 38.24, + "z": 5.39 + }, + "E3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 38.24, + "z": 5.39 + }, + "E4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 38.24, + "z": 5.39 + }, + "E5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 38.24, + "z": 5.39 + }, + "E6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 38.24, + "z": 5.39 + }, + "E7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 38.24, + "z": 5.39 + }, + "E8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 38.24, + "z": 5.39 + }, + "E9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 38.24, + "z": 5.39 + }, + "F1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 29.24, + "z": 5.39 + }, + "F10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 29.24, + "z": 5.39 + }, + "F11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 29.24, + "z": 5.39 + }, + "F12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 29.24, + "z": 5.39 + }, + "F2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 29.24, + "z": 5.39 + }, + "F3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 29.24, + "z": 5.39 + }, + "F4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 29.24, + "z": 5.39 + }, + "F5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 29.24, + "z": 5.39 + }, + "F6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 29.24, + "z": 5.39 + }, + "F7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 29.24, + "z": 5.39 + }, + "F8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 29.24, + "z": 5.39 + }, + "F9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 29.24, + "z": 5.39 + }, + "G1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 20.24, + "z": 5.39 + }, + "G10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 20.24, + "z": 5.39 + }, + "G11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 20.24, + "z": 5.39 + }, + "G12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 20.24, + "z": 5.39 + }, + "G2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 20.24, + "z": 5.39 + }, + "G3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 20.24, + "z": 5.39 + }, + "G4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 20.24, + "z": 5.39 + }, + "G5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 20.24, + "z": 5.39 + }, + "G6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 20.24, + "z": 5.39 + }, + "G7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 20.24, + "z": 5.39 + }, + "G8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 20.24, + "z": 5.39 + }, + "G9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 20.24, + "z": 5.39 + }, + "H1": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 14.38, + "y": 11.24, + "z": 5.39 + }, + "H10": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 95.38, + "y": 11.24, + "z": 5.39 + }, + "H11": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 104.38, + "y": 11.24, + "z": 5.39 + }, + "H12": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 113.38, + "y": 11.24, + "z": 5.39 + }, + "H2": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 23.38, + "y": 11.24, + "z": 5.39 + }, + "H3": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 32.38, + "y": 11.24, + "z": 5.39 + }, + "H4": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 41.38, + "y": 11.24, + "z": 5.39 + }, + "H5": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 50.38, + "y": 11.24, + "z": 5.39 + }, + "H6": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 59.38, + "y": 11.24, + "z": 5.39 + }, + "H7": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 68.38, + "y": 11.24, + "z": 5.39 + }, + "H8": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 77.38, + "y": 11.24, + "z": 5.39 + }, + "H9": { + "depth": 59.3, + "diameter": 5.23, + "shape": "circular", + "totalLiquidVolume": 300, + "x": 86.38, + "y": 11.24, + "z": 5.39 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "usascientific_12_reservoir_22ml", + "location": { + "slotName": "2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "USA Scientific", + "brandId": [ + "1061-8150" + ], + "links": [ + "https://www.usascientific.com/12-channel-automation-reservoir.aspx" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.8, + "zDimension": 44.45 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "USA Scientific 12 Well Reservoir 22 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "usascientific_12_reservoir_22ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 13.94, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A10": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 95.75, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A11": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 104.84, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A12": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 113.93, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A2": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 23.03, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A3": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 32.12, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A4": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 41.21, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A5": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 50.3, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A6": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 59.39, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A7": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 68.48, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A8": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 77.57, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + }, + "A9": { + "depth": 42.16, + "shape": "rectangular", + "totalLiquidVolume": 22000, + "x": 86.66, + "xDimension": 8.33, + "y": 42.9, + "yDimension": 71.88, + "z": 2.29 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "params": { + "loadName": "corning_96_wellplate_360ul_flat", + "location": { + "slotName": "3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Corning", + "brandId": [ + "2503", + "2507", + "2509", + "3300", + "3361", + "3362", + "3370", + "3474", + "3585", + "3590", + "3591", + "3595", + "3596", + "3598", + "3599", + "3600", + "3628", + "3641", + "3650", + "3665", + "3912", + "3915", + "3916", + "3917", + "3922", + "3925", + "3977", + "9017", + "9018" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Microplates/Assay-Microplates/96-Well-Microplates/Corning%C2%AE-96-well-Solid-Black-and-White-Polystyrene-Microplates/p/corning96WellSolidBlackAndWhitePolystyreneMicroplates" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.47, + "zDimension": 14.22 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "flat" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Corning 96 Well Plate 360 µL Flat", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "corning_96_wellplate_360ul_flat" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 74.24, + "z": 3.55 + }, + "A10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 74.24, + "z": 3.55 + }, + "A11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 74.24, + "z": 3.55 + }, + "A12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 74.24, + "z": 3.55 + }, + "A2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 74.24, + "z": 3.55 + }, + "A3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 74.24, + "z": 3.55 + }, + "A4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 74.24, + "z": 3.55 + }, + "A5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 74.24, + "z": 3.55 + }, + "A6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 74.24, + "z": 3.55 + }, + "A7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 74.24, + "z": 3.55 + }, + "A8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 74.24, + "z": 3.55 + }, + "A9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 74.24, + "z": 3.55 + }, + "B1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 65.24, + "z": 3.55 + }, + "B10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 65.24, + "z": 3.55 + }, + "B11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 65.24, + "z": 3.55 + }, + "B12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 65.24, + "z": 3.55 + }, + "B2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 65.24, + "z": 3.55 + }, + "B3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 65.24, + "z": 3.55 + }, + "B4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 65.24, + "z": 3.55 + }, + "B5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 65.24, + "z": 3.55 + }, + "B6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 65.24, + "z": 3.55 + }, + "B7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 65.24, + "z": 3.55 + }, + "B8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 65.24, + "z": 3.55 + }, + "B9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 65.24, + "z": 3.55 + }, + "C1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 56.24, + "z": 3.55 + }, + "C10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 56.24, + "z": 3.55 + }, + "C11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 56.24, + "z": 3.55 + }, + "C12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 56.24, + "z": 3.55 + }, + "C2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 56.24, + "z": 3.55 + }, + "C3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 56.24, + "z": 3.55 + }, + "C4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 56.24, + "z": 3.55 + }, + "C5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 56.24, + "z": 3.55 + }, + "C6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 56.24, + "z": 3.55 + }, + "C7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 56.24, + "z": 3.55 + }, + "C8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 56.24, + "z": 3.55 + }, + "C9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 56.24, + "z": 3.55 + }, + "D1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 47.24, + "z": 3.55 + }, + "D10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 47.24, + "z": 3.55 + }, + "D11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 47.24, + "z": 3.55 + }, + "D12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 47.24, + "z": 3.55 + }, + "D2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 47.24, + "z": 3.55 + }, + "D3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 47.24, + "z": 3.55 + }, + "D4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 47.24, + "z": 3.55 + }, + "D5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 47.24, + "z": 3.55 + }, + "D6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 47.24, + "z": 3.55 + }, + "D7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 47.24, + "z": 3.55 + }, + "D8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 47.24, + "z": 3.55 + }, + "D9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 47.24, + "z": 3.55 + }, + "E1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 38.24, + "z": 3.55 + }, + "E10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 38.24, + "z": 3.55 + }, + "E11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 38.24, + "z": 3.55 + }, + "E12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 38.24, + "z": 3.55 + }, + "E2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 38.24, + "z": 3.55 + }, + "E3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 38.24, + "z": 3.55 + }, + "E4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 38.24, + "z": 3.55 + }, + "E5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 38.24, + "z": 3.55 + }, + "E6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 38.24, + "z": 3.55 + }, + "E7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 38.24, + "z": 3.55 + }, + "E8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 38.24, + "z": 3.55 + }, + "E9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 38.24, + "z": 3.55 + }, + "F1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 29.24, + "z": 3.55 + }, + "F10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 29.24, + "z": 3.55 + }, + "F11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 29.24, + "z": 3.55 + }, + "F12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 29.24, + "z": 3.55 + }, + "F2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 29.24, + "z": 3.55 + }, + "F3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 29.24, + "z": 3.55 + }, + "F4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 29.24, + "z": 3.55 + }, + "F5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 29.24, + "z": 3.55 + }, + "F6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 29.24, + "z": 3.55 + }, + "F7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 29.24, + "z": 3.55 + }, + "F8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 29.24, + "z": 3.55 + }, + "F9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 29.24, + "z": 3.55 + }, + "G1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 20.24, + "z": 3.55 + }, + "G10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 20.24, + "z": 3.55 + }, + "G11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 20.24, + "z": 3.55 + }, + "G12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 20.24, + "z": 3.55 + }, + "G2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 20.24, + "z": 3.55 + }, + "G3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 20.24, + "z": 3.55 + }, + "G4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 20.24, + "z": 3.55 + }, + "G5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 20.24, + "z": 3.55 + }, + "G6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 20.24, + "z": 3.55 + }, + "G7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 20.24, + "z": 3.55 + }, + "G8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 20.24, + "z": 3.55 + }, + "G9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 20.24, + "z": 3.55 + }, + "H1": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 14.38, + "y": 11.24, + "z": 3.55 + }, + "H10": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 95.38, + "y": 11.24, + "z": 3.55 + }, + "H11": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 104.38, + "y": 11.24, + "z": 3.55 + }, + "H12": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 113.38, + "y": 11.24, + "z": 3.55 + }, + "H2": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 23.38, + "y": 11.24, + "z": 3.55 + }, + "H3": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 32.38, + "y": 11.24, + "z": 3.55 + }, + "H4": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 41.38, + "y": 11.24, + "z": 3.55 + }, + "H5": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 50.38, + "y": 11.24, + "z": 3.55 + }, + "H6": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 59.38, + "y": 11.24, + "z": 3.55 + }, + "H7": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 68.38, + "y": 11.24, + "z": 3.55 + }, + "H8": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 77.38, + "y": 11.24, + "z": 3.55 + }, + "H9": { + "depth": 10.67, + "diameter": 6.86, + "shape": "circular", + "totalLiquidVolume": 360, + "x": 86.38, + "y": 11.24, + "z": 3.55 + } + } + } + }, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "right", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "params": { + "mount": "left", + "pipetteName": "p300_single_gen2" + }, + "result": {}, + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "params": { + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "tipDiameter": 0, + "tipLength": 51.099999999999994, + "tipVolume": 300 + }, + "status": "succeeded" + }, + { + "commandType": "aspirate", + "params": { + "flowRate": 92.86, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dispense", + "params": { + "flowRate": 92.86, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "volume": 20.0 + }, + "status": "succeeded" + }, + { + "commandType": "dropTip", + "params": { + "alternateDropLocation": false, + "wellLocation": { + "offset": { + "x": 0, + "y": 0, + "z": 0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + }, + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 7 + ], + "protocolType": "python" + }, + "errors": [ + { + "detail": "AttributeError [line 23]: 'InstrumentContext' object has no attribute 'pair_with'", + "errorCode": "4000", + "errorInfo": {}, + "errorType": "ExceptionInProtocolError", + "wrappedErrors": [ + { + "detail": "AttributeError: 'InstrumentContext' object has no attribute 'pair_with'", + "errorCode": "4000", + "errorInfo": { + "args": "(\"'InstrumentContext' object has no attribute 'pair_with'\",)", + "class": "AttributeError", + "name": "pair_with", + "obj": "P300 Single-Channel GEN2 on left mount", + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 69, in run_python\n exec(\"run(__context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"OT2_P300S_Twinning_Error.py\", line 23, in run\n" + }, + "errorType": "PythonException", + "wrappedErrors": [] + } + ] + } + ], + "files": [ + { + "name": "OT2_P300S_Twinning_Error.py", + "role": "main" + }, + { + "name": "cpx_4_tuberack_100ul.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_1000ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_200ul_rss.json", + "role": "labware" + }, + { + "name": "opentrons_ot3_96_tiprack_50ul_rss.json", + "role": "labware" + }, + { + "name": "sample_labware.json", + "role": "labware" + } + ], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_1100ml_fixed/1", + "loadName": "opentrons_1_trash_1100ml_fixed", + "location": { + "slotName": "12" + } + }, + { + "definitionUri": "opentrons/opentrons_96_tiprack_300ul/1", + "loadName": "opentrons_96_tiprack_300ul", + "location": { + "slotName": "1" + } + }, + { + "definitionUri": "opentrons/usascientific_12_reservoir_22ml/1", + "loadName": "usascientific_12_reservoir_22ml", + "location": { + "slotName": "2" + } + }, + { + "definitionUri": "opentrons/corning_96_wellplate_360ul_flat/1", + "loadName": "corning_96_wellplate_360ul_flat", + "location": { + "slotName": "3" + } + } + ], + "liquids": [], + "metadata": { + "apiLevel": "2.7", + "author": "Name ", + "description": "Simple paired pipette protocol", + "protocolName": "My Protocol" + }, + "modules": [], + "pipettes": [ + { + "mount": "right", + "pipetteName": "p300_single_gen2" + }, + { + "mount": "left", + "pipetteName": "p300_single_gen2" + } + ], + "robotType": "OT-2 Standard" +} diff --git a/app-testing/tests/analyses_snapshot_test.py b/app-testing/tests/analyses_snapshot_test.py new file mode 100644 index 00000000000..36fe84c1957 --- /dev/null +++ b/app-testing/tests/analyses_snapshot_test.py @@ -0,0 +1,116 @@ +import json +import os +from pathlib import Path +from typing import Any, List + +import pytest +from automation.data.protocol import Protocol +from automation.data.protocols import Protocols +from citools.generate_analyses import ANALYSIS_SUFFIX, generate_analyses_from_test +from syrupy.extensions.json import JSONSnapshotExtension +from syrupy.filters import props +from syrupy.types import SerializableData + +# not included in the snapshot +exclude = props( + "id", + "createdAt", + "startedAt", + "completedAt", + "lastModified", + "created", + "key", + "pipetteId", + "labwareId", + "serialNumber", + "moduleId", + "liquidId", +) + + +@pytest.fixture +def snapshot_exclude(snapshot: SerializableData) -> SerializableData: + return snapshot.with_defaults(exclude=exclude) + + +@pytest.fixture +def snapshot_json(snapshot_exclude: SerializableData) -> SerializableData: + return snapshot_exclude.with_defaults(extension_class=JSONSnapshotExtension) + + +def what_protocols() -> List[Protocol]: + protocols: Protocols = Protocols() + protocols_to_test: str = os.getenv("APP_ANALYSIS_TEST_PROTOCOLS", "upload_protocol") + tests: list[(Protocol)] = [] + for protocol_name in [x.strip() for x in protocols_to_test.split(",")]: + tests.append((getattr(protocols, protocol_name))) + return tests + + +@pytest.fixture(scope="session") +def analyze_protocols() -> None: + """Use the environment variable to select which protocols are used in the test.""" + tests = what_protocols() + # Generate target analyses + if not tests: + exit("No protocols to test.") + # !!!!! Docker Image with tag of TARGET must already be created + target = os.getenv("TARGET") + if not target: + raise AssertionError("Environment variable TARGET not set.") + else: + generate_analyses_from_test(tag=target, protocols=tests) + + +def sort_all_lists(d: Any, sort_key: str | None = None) -> Any: + """Recursively sorts lists in a nested dictionary. + + :param d: The dictionary or list to sort. + :param sort_key: The key to sort dictionaries on if they are in a list. + """ + if isinstance(d, dict): + return {k: sort_all_lists(v, sort_key) for k, v in d.items()} + elif isinstance(d, list): + # Sort each item in the list + sorted_list = [sort_all_lists(x, sort_key) for x in d] + # Try to sort the list if it contains comparable items + try: + if sort_key and all(isinstance(x, dict) and sort_key in x for x in sorted_list): + return sorted(sorted_list, key=lambda x: x[sort_key]) + else: + return sorted(sorted_list) + except TypeError: + # If items are not comparable, return the list as is + return sorted_list + else: + return d + + +# Read in what protocols to test from the environment variable +# APP_ANALYSIS_TEST_PROTOCOLS +# Generate all the analyses for the target version of the Opentrons repository +# Compare the analyses to the snapshots + + +@pytest.mark.parametrize( + "protocol", + what_protocols(), + ids=[x.file_name for x in what_protocols()], +) +def test_analysis_snapshot(analyze_protocols: None, snapshot_json: SerializableData, protocol: Protocol) -> None: + target = os.getenv("TARGET") + if not target: + raise AssertionError("Environment variable TARGET not set.") + analysis = Path( + Path(__file__).parent.parent, + "analysis_results", + f"{protocol.file_name}_{target}_{ANALYSIS_SUFFIX}", + ) + if analysis.exists(): + with open(analysis, "r") as f: + data = json.load(f) + print(f"Test name: {protocol.file_name}") + data = sort_all_lists(data, sort_key="name") + assert snapshot_json(name=protocol.file_name) == data + else: + raise AssertionError(f"Analysis file not found: {analysis}") diff --git a/app-testing/tests/app_settings_test.py b/app-testing/tests/app_settings_test.py index 343c0ba5feb..0b0d49f4c38 100644 --- a/app-testing/tests/app_settings_test.py +++ b/app-testing/tests/app_settings_test.py @@ -56,10 +56,7 @@ def test_app_settings( == "https://support.opentrons.com/s/article/Uninstall-the-Opentrons-App" ) assert app_settings.get_link_to_previous_releases().is_displayed() - assert ( - app_settings.get_link_to_previous_releases().get_attribute("href") - == "https://github.com/Opentrons/opentrons/releases" - ) + assert app_settings.get_link_to_previous_releases().get_attribute("href") == "https://github.com/Opentrons/opentrons/releases" app_settings.click_close_previous_software_modal() assert app_settings.get_link_app_robot_sync().is_displayed() diff --git a/app-testing/tests/protocol_analyze_test.py b/app-testing/tests/protocol_analyze_test.py index 1eb1d5e10b4..09e1f5b9cd0 100644 --- a/app-testing/tests/protocol_analyze_test.py +++ b/app-testing/tests/protocol_analyze_test.py @@ -47,10 +47,7 @@ def get_error_text(protocol_landing: ProtocolLanding, error_link: WebElement) -> return error_details -@pytest.mark.parametrize( - "protocol", - _what_protocols(), -) +@pytest.mark.parametrize("protocol", _what_protocols()) def test_analyses( driver: WebDriver, console: Console, @@ -74,9 +71,9 @@ def test_analyses( style="white on blue", ) drag_and_drop_file(labware_landing.get_drag_drop_file_button(), labware) - if labware_landing.get_success_toast_message( + if labware_landing.get_success_toast_message(filename=labware.name) or labware_landing.get_duplicate_error_toast_message( filename=labware.name - ) or labware_landing.get_duplicate_error_toast_message(filename=labware.name): + ): console.print( f"{labware.name} uploaded to app.", style="white on blue", @@ -109,10 +106,7 @@ def test_analyses( # Verifying elements on Protocol Landing Page # todo fix next line needs to be safe and print name not found assert protocol_landing.get_deckMap_protocol_landing(protocol_name=protocol.protocol_name).is_displayed() - assert ( - protocol_landing.get_protocol_name_text_protocol_landing(protocol_name=protocol.protocol_name) - == protocol.protocol_name - ) + assert protocol_landing.get_protocol_name_text_protocol_landing(protocol_name=protocol.protocol_name) == protocol.protocol_name # TODO validate robot diff --git a/app-testing/tests/protocol_landing_test.py b/app-testing/tests/protocol_landing_test.py index a3d8fcfddfa..b003b3495fe 100644 --- a/app-testing/tests/protocol_landing_test.py +++ b/app-testing/tests/protocol_landing_test.py @@ -43,10 +43,7 @@ def test_protocol_landing( # Verifying elements on Protocol Landing Page assert protocol_landing.get_import_button_protocol_landing().is_displayed() assert protocol_landing.get_deckMap_protocol_landing(protocol_name="script_pur_sample_1").is_displayed() - assert ( - protocol_landing.get_protocol_name_text_protocol_landing(protocol_name="script_pur_sample_1") - == "script_pur_sample_1" - ) + assert protocol_landing.get_protocol_name_text_protocol_landing(protocol_name="script_pur_sample_1") == "script_pur_sample_1" protocol_landing.click_overflow_menu() assert protocol_landing.get_show_in_folder().is_displayed() assert protocol_landing.get_run_protocol().is_displayed()